erg/examples/with.er
2022-11-05 15:52:37 +09:00

9 lines
219 B
Python

with! open!("examples/record.er"), f =>
print! f.read!()
open_file!(path) =
with! open!(path, mode:="r" , encoding:="utf_8"), f =>
data = f.read!()
data
print! open_file!("examples/record.er")