rem-command-line 0.1.0

CLI interface for the REM toolchain. Built to be implemented into the VSCode extension for REM
fn new_foo() -> i32 {
    let mut x = 7;
    let y = 11;
    loop {
        x -= 1;
        bar(y);
    }
    x
}

fn bar(y: i32) {
    if y == 5 {
        continue
    } else {
        break
    };
}

fn main() {
    new_foo();
}