mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
22 lines
289 B
Nim
Executable File
22 lines
289 B
Nim
Executable File
discard """
|
|
file: "tfinally.nim"
|
|
output: "came here 3"
|
|
"""
|
|
# Test return in try statement:
|
|
|
|
proc main: int =
|
|
try:
|
|
try:
|
|
return 1
|
|
finally:
|
|
stdout.write("came ")
|
|
return 2
|
|
finally:
|
|
stdout.write("here ")
|
|
return 3
|
|
|
|
echo main() #OUT came here 3
|
|
|
|
|
|
|