shithub: mc

ref: 10b54e590ef8bfd54c5dc9712d0864db4be4e1ce
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
}