1
0
mirror of https://github.com/helix-editor/helix synced 2026-07-28 23:33:35 +02:00
Files
helix/tests/indent/cairo.cairo
2026-06-20 14:42:38 +09:00

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,
}