RosettaCodeData/Task/Gotchas/C/gotchas-11.c

4 lines
94 B
C
Raw Permalink Normal View History

2023-10-02 18:11:16 -07:00
(let numbers [1 2 3 4]
maximum (max numbers)) ;should be (... max numbers)
(+ maximum 5)