mers/examples/02_Calc_Sum.mers
2024-03-22 16:50:01 +01:00

11 lines
262 B
Plaintext

total := 0.0
loop {
("Total: ", total, ". Type a number to change.").concat.println
().read_line.trim.parse_float.try(
(n) -> &total = (total, n).sum
// not a number, so return a 1-tuple to break from the loop
() -> (())
)
}
"Goodbye.".println