shithub: mc

ref: 89c2d615ca55d511bd394607534091b78cfe82b4
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
}