1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
script;
fn main(hi: u64, hi2: u64) -> u64 {
let h3 = hi + hi2;
if h3 > 100 {
return 0;
}
h3
}
fn helper(hi: u64, hi2: u64) -> u64 {
let h3 = hi + hi2;
if h3 > 100 {
return 0;
}
h3
}
#[test]
fn test_1() {
let hi = 1;
let hey = 2;
let res = helper(hi, hey);
assert_eq(res, 3);
}
#[test]
fn test_2() {
let hi = 1;
let hey = 2;
let res = helper(hi, hey);
assert_eq(res, 3);
}
#[test]
fn test_3() {
let hi = 1;
let hey = 2;
let res = helper(hi, hey);
assert_eq(res, 3);
}