Not logged in.

From instruction: Draw a straight line and follow it

Code: Concurrent Mundania by fogus

Written in the Vodka programming language. http://projects.earthvssoup.com/vodka

-m

(fn line ()
	(while t
		(print ---)
		(sleep 100)		
	)
)

(fn follow ()
	(sleep 1000)
	(while t
		(print >)
		(sleep 100)
	)
)

(schedule line)
(schedule follow)

[download]

Written in Vodka. Released under the GPLv3 license