Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
compiler
/
rustc_codegen_gcc
/
tests
/
hello-world
/
mylib
/
src
/
lib.rs
blob: 8d3d111bd19939107b02c3f07ea83c969ad45e92 [
file
]
pub
fn
my_func
(
a
:
i32
,
b
:
i32
)
->
i32
{
let
mut
res
=
a
;
for
i in a
..
b
{
res
+=
i
;
}
res
}