hell/examples/example.hell

10 lines
117 B
Plaintext
Raw Permalink Normal View History

2023-12-04 19:33:10 -05:00
import hell:std.ioutils
func
main(int argc, str argv[])
{
while (1) {
hell:std.ioutils.writeln("Hello\n");
}
}