rust_demos 0.1.0

Aa demo crate
Documentation
1
2
3
4
5
6
7
8
9
10
11


fn main() {
	let a:u8 = 25;
	let p:&u8;
	{
		let b:u8 = 50;
		//p = greater(&a, &b);
		//println!("Greatest of {} and {} is {}", a, b, p)
	}
}