That's why you should use JS
this post was submitted on 10 Jul 2023
2 points (75.0% liked)
Programmer Humor
32410 readers
1840 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 5 years ago
MODERATORS
fn main(){
let mut input = std::io::stdin().lines();
let num0 = input.next().unwrap().unwrap();
let num1 = input.next().unwrap().unwrap();
println!("{}", num0 + &num1);
}