Completed 01 activities

This commit is contained in:
Dan Buch 2016-08-31 10:11:27 -04:00
parent fc7a5ee342
commit 9741f01b6e
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC

View File

@ -20,4 +20,7 @@ fn main() {
struct Structure(i32);
// println!("This struct `{}` won't print...", Structure(3));
let pi = 3.141592;
println!("Pi is roughly {:.*}", 3, pi);
}