RosettaCodeData/Task/Conditional-structures/Scheme/conditional-structures-3.scm
2024-10-16 18:07:41 -07:00

9 lines
107 B
Scheme

(display
(if (> 1 2)
"yes"
"no"))
(newline)
(display
(if (> 1 2)
(- 1 2)))
(newline)