shithub: mc

ref: b79e739ffcf4a2d7c6c177a257c63a24c7bc844f
dir: /test/helloworld.myr/

View raw version
/* checks that this program prints Hello-世界\n */
use std

const main = {args : byte[:][:]
	std.write(1, "Hello-世界\n")
	-> 0
}