Skip to content

Instantly share code, notes, and snippets.

View Every2's full-sized avatar
💭
😅 Codando...?

Christian Every2

💭
😅 Codando...?
View GitHub Profile
fn main() {
for i in 0..6 {
println!("{}", "👁️".repeat(i));
}
}
@Every2
Every2 / to_int.rs
Last active October 11, 2024 22:47
to_int do Zan
//Não cobre os casos negativos
fn to_int(str: &str) -> u32 {
let mut n = 0;
for i in str.chars() {
n *= 10;
n += i as u32 - 0x30;
}
n
}