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