mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-07-04 00:24:16 +02:00
16 lines
144 B
Plaintext
16 lines
144 B
Plaintext
|
|
fn add(lhs: int, rhs: int) -> int {
|
|
lhs + rhs
|
|
}
|
|
|
|
fn main() {
|
|
let a = 5;
|
|
let b = 7 + a;
|
|
|
|
if true {}
|
|
|
|
let c = add(a, b);
|
|
}
|
|
|
|
|