mirror of
https://github.com/helix-editor/helix
synced 2026-07-28 23:33:35 +02:00
13 lines
153 B
Plaintext
13 lines
153 B
Plaintext
fn add(a: u64, b: u64) -> u64 {
|
|
let sum = a + b;
|
|
match sum {
|
|
0 => 0,
|
|
_ => sum,
|
|
}
|
|
}
|
|
|
|
struct Point {
|
|
x: u64,
|
|
y: u64,
|
|
}
|