shithub: mc

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