tstreams3.nim 156 B

12345678910
  1. discard """
  2. output: "threw exception"
  3. """
  4. import streams
  5. try:
  6. var fs = openFileStream("shouldneverexist.txt")
  7. except IoError:
  8. echo "threw exception"