RosettaCodeData/Task/Gotchas/C/gotchas-11.c
2023-10-02 18:11:16 -07:00

3 lines
94 B
C

(let numbers [1 2 3 4]
maximum (max numbers)) ;should be (... max numbers)
(+ maximum 5)