shithub: mc

ref: a2d39ddf4e0d6dc324bd0af41d89c942f4f8a49c
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
}