1 2 3 4 5 6 7 8 9 10
# Test return in try statement: proc main: int = try: return 1 finally: echo "came here" echo main()