aboutsummaryrefslogtreecommitdiff
path: root/examples/hello.sloth
blob: 641ed1a39d9407cf4531a29d0542c3c973d8f794 (plain)
1
2
3
4
5
6
fn main() Int {
    while true {
      println("Hello World!");
    }
    return 0;
}