LR5WD277EZGE6ON544VLICHXZANGCND32WTJOAFUQWE6LNJZJJFAC
const ITERS: usize = 10;
fn print_fib(n: usize) {
let mut x = (1, 1);
for _ in 0..n {
print!("{}, ", x.0);
x = (x.1, x.0 + x.1)
}
}
fn main() {
print_fib(ITERS);
}
[package]
name = "scrumest"
authors = ["Henrik Tjäder <henrik@grepit.se>"]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "scrumest"
version = "0.1.0"
.git
.DS_Store
# Added by cargo
/target