ablescript/able-script-test/iotest.able
Alex Bethel eee173060c Implement read semantics in interpreter
Also added a test file `iotest.able` to just read data and print
it (the `cat` of AbleScript I guess).
2021-06-18 16:05:50 -05:00

6 lines
46 B
Plaintext

var data;
loop {
data read;
data print;
}