erg 0.6.53

The Erg programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
with! open!("examples/record.er"), f =>
    print! f.read!()

with! open!("examples/set.er"), f =>
    for! f.readlines!(), line =>
        print!("line: " + line)

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

print! open_file!("examples/record.er")