hell/examples/example.hell

10 lines
117 B
Plaintext

import hell:std.ioutils
func
main(int argc, str argv[])
{
while (1) {
hell:std.ioutils.writeln("Hello\n");
}
}