Contact: aviboots(AT)netvision.net.il
41,215 questions
53,717 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 */