shithub: mc

ref: 77a37e3330f03b9f1a9c45810994d94c921b45ae
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
}