9 lines
107 B
Scheme
9 lines
107 B
Scheme
(display
|
|
(if (> 1 2)
|
|
"yes"
|
|
"no"))
|
|
(newline)
|
|
(display
|
|
(if (> 1 2)
|
|
(- 1 2)))
|
|
(newline)
|