mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
16 lines
148 B
Plaintext
16 lines
148 B
Plaintext
|
|
// #[builtin(Hello)]
|
|
// fn c_hello() -> int {}
|
|
|
|
fn main() {
|
|
let mut a = 2;
|
|
if true {
|
|
a = 3;
|
|
} else {
|
|
|
|
}
|
|
let b = a;
|
|
}
|
|
|
|
|