mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-09 22:43:34 +00:00
12 lines
188 B
Nim
12 lines
188 B
Nim
# check for forward label and
|
|
# for failure when label is not declared
|
|
|
|
proc main =
|
|
block endLess:
|
|
write(stdout, "Muaahh!\N")
|
|
break endLess
|
|
|
|
break ha #ERROR
|
|
|
|
main()
|