Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
script;

struct Point {
    x: u64,
    y: u64,
}

fn add(a: u64, b: u64) -> u64 {
    let sum = a + b;
    match sum {
        0 => 0,
        _ => sum,
    }
}