shithub: mc

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