yuescript-src 0.13.6

Sources of Yuescript and logic to build them.
Documentation

do
	print "hello"
	print "world"

x = do
	print "hello"
	print "world"

y = do
	things = "shhh"
	-> "hello: " .. things

_ = -> if something then do "yeah"

t = {
	y: do
		number = 100
		(x) -> x + number
}

(y=(do
	x = 10 + 2
	x), k=do
		"nothing") -> do
			"uhhh"