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