12 lines
170 B
Plaintext
12 lines
170 B
Plaintext
//ww:run-exit 2
|
|
// Migrated from 700_e2e row 120.
|
|
package main;
|
|
let G: f64 = 10.0;
|
|
fn main() i32 = {
|
|
G += 5.0;
|
|
G *= 2.0;
|
|
G -= 20.0;
|
|
G /= 5.0;
|
|
return G: i32;
|
|
};
|