Guest User

Untitled

a guest
Nov 26th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. proc test() =
  2. try:
  3. try:
  4. echo "step 1"
  5. return
  6. except EOS:
  7. echo "except block!"
  8. return
  9. finally:
  10. echo "Running finally!"
  11.  
  12. when isMainModule:
  13. test()
Add Comment
Please, Sign In to add comment