Files
Nim/tests/tfinally.nim
2009-12-07 01:24:27 +01:00

11 lines
122 B
Nim
Executable File

# Test return in try statement:
proc main: int =
try:
return 1
finally:
echo "came here"
echo main()