shithub: mc

ref: 9a8ac636f97d0da01fe0d7283082bc7b9315e44e
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
}