shithub: mc

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