RosettaCodeData/Task/Conditional-structures/Scheme/conditional-structures-3.ss

10 lines
107 B
Scheme
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
(display
(if (> 1 2)
"yes"
"no"))
(newline)
(display
(if (> 1 2)
(- 1 2)))
(newline)