summaryrefslogtreecommitdiff
path: root/rust/kboom/src/main.rs
blob: 1cb2765648ddee3f047dbf430c89248f7bf869e3 (plain)
1
2
3
4
5
6
7
8
9
fn main() {

    let mut x:u8 = 10;
    let i = 10;
    loop {
        x += i;
        println!("Hello, world {x}");
    }
}