Files
l2/tests/else_if_shorthand.sl

12 lines
152 B
Plaintext
Raw Permalink Normal View History

2026-01-12 19:51:52 +01:00
import stdlib/stdlib.sl
word main
10 1 < if
"first" puts
else 1 2 < if
"second" puts
else
"third" puts
end
end