shithub: mc

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