RosettaCodeData/Task/Flow-control-structures/Nim/flow-control-structures-2.nim

8 lines
114 B
Nim
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var f = open "input.txt"
try:
var s = readLine f
except IOError:
echo "An error occurred!"
finally:
close f