aboutsummaryrefslogtreecommitdiff
path: root/examples/hello2.sloth
blob: 589d9693c6c1d86a52c53885104d5bcdffb4aa0c (plain)
1
2
3
4
5
6
7
8
9
10
11
fn example() {}

fn main() {
    var i: Int = 10;
    var j: Int = 1.0 - 1;
    while i > j {
        i = i - 1;
    }
    example(i);
}