shithub: mc

ref: 6a2702fa848c89bf3d9d6cb366f0c838ea8fcd50
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
}