e18 - ownership: simple data & Functions

First published at 14:26 UTC on January 12th, 2018.
subscribers

Today were going to go over simple data types
and ownership with functions.
https://play.rust-lang.org/
https://doc.rust-lang.org/book/second-edition/ch04-01-what-is-ownership.html

let x = 5;
let y = x;

println!("x = {}, y = {}", x, y);

bec…

MORE
CategoryEducation
SensitivityNormal - Content that is suitable for ages 16 and over
DISCUSS THIS VIDEO