blob: 8d3d111bd19939107b02c3f07ea83c969ad45e92 [file]
pub fn my_func(a: i32, b: i32) -> i32 {
let mut res = a;
for i in a..b {
res += i;
}
res
}