Contact: aviboots(AT)netvision.net.il
39,948 questions
51,890 answers
573 users
fn main() { let a:f32 = 8.0; let cube_volume:f32 = a * a * a; println!("volume of cube = {}", cube_volume); } /* run: volume of cube = 512 */