shithub: mc

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