Files
l2/tests/else_if_shorthand.sl
IgorCielniak a195e2b7cf added elif
2026-01-12 19:51:52 +01:00

12 lines
152 B
Plaintext

import stdlib/stdlib.sl
word main
10 1 < if
"first" puts
else 1 2 < if
"second" puts
else
"third" puts
end
end