shithub: mc

ref: 4b77bda908dec8620abde1e452a1f2bac29f1252
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
}