valhallac

Compiler for set-theoretic programming language.
git clone git://git.knutsen.co/valhallac
Log | Files | Refs | README | LICENSE

io_1.vh (125B)


1
2
3
4
5
6
7
io = import :IO

name : String
name = "Sammy"

io::puts "Hello, ${name}!"
	-- expands to: `"Hello, " + name.to_string + "!"`