See e.g. https://en.m.wikipedia.org/wiki/Interbreeding_between_archaic_and_modern_humans
Corpses, illness, “bad genes” (asymmetry etc) seems like a more reasonable explaination in my ears, with interacting/breeding in mind.
See e.g. https://en.m.wikipedia.org/wiki/Interbreeding_between_archaic_and_modern_humans
Corpses, illness, “bad genes” (asymmetry etc) seems like a more reasonable explaination in my ears, with interacting/breeding in mind.
Yeah, COBOL schools and boot camps have started to pop up
Well … some are very real: https://www.youtube.com/watch?v=X8BQf-KdOfQ
Some commenter asked why they were using Brave. I saved it to check out the answer later, because I was curious, but now I’ll never know :(
Haha yeah it was the only way I could make sense of it…
First function is a sine wave, commonly written sin().
Second function is a cubic (“square”?) polynomial.
Joke:
Everyone else’s life: Sin.
My life: Square.
Edit: as pointed out, it’s not really square
Learning some functional programming. It really influenced the way I think about code and make coding decisions.
“Did you get the reference? Do you need a pointer?”
You can implement Display for custom structs, to print them in the regular manner:
use std::fmt; struct Point { x: i32, y: i32, } impl fmt::Display for Point { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "({}, {})", self.x, self.y) } } fn main() { let point = Point { x: 10, y: 20 }; println!("{}", point); // using standard println! }
You can also implement things like Add, Sub, AddAssign (point_a += point_b)… :)