mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 12:07:51 +00:00
11 lines
140 B
Nim
Executable File
11 lines
140 B
Nim
Executable File
# Test return in try statement:
|
|
|
|
proc main: int =
|
|
try:
|
|
return 1
|
|
finally:
|
|
echo "came here"
|
|
|
|
discard main() #OUT came here
|
|
|