AJ ONeal
@_beyondcode
youtube.com/coolaj86
Dangerous Wrong Thinker
Equal Opportunity Offender
Technophobic Technologist Extraordinairé
Utah Node.js
Utah Rust
Twitch.tv/coolaj86
Like, Sub, & Follow
(if this is useful, or entertaining)
When you want to reuse
When you want to reuse
the name of a variable.
let answer = "42"; let answer = answer.parse::<i32>().unwrap();
All command line args are strings.
(even when they’re numbers)
let ageStr = env::args().skip(1).next() .unwrap(); println!("age: {}", age); let ageNum = ageStr.parse::<i32>() .unwrap(); println!("age: {}", age);
let ageStr = env::args().skip(1).next() .unwrap(); println!("age: {}", age); let ageNum = ageStr.parse::<i32>() .unwrap(); println!("age: {}", age);
let ageStr = env::args().skip(1).next() .unwrap(); println!("age: {}", age); let ageNum = ageStr.parse::<i32>() .unwrap(); println!("age: {}", age);
But
storing type information
in a name
… is lame.
// type of 'age' is string let age = env::args().skip(1).next() .unwrap(); println!("age: {}", age); // different memory location for new 'age', as int! // (the other age may still be useful through other references) let age = age.parse::<i32>() .unwrap(); println!("age: {}", age);
// type of 'age' is string let age = env::args().skip(1).next() .unwrap(); println!("age: {}", age); // different memory location for new 'age', as int! // (the other age may still be useful through other references) let age = age.parse::<i32>() .unwrap(); println!("age: {}", age);
// type of 'age' is string let age = env::args().skip(1).next() .unwrap(); println!("age: {}", age); // different memory location for new 'age', as int! // (the other age may still be useful through other references) let age = age.parse::<i32>() .unwrap(); println!("age: {}", age);
Like, Sub, & Follow
(if you wannu)
Thanks.
FIN