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