forked from AbleScript/ablescript
Alex Bethel
f7ac2a1a43
Also added a test file `iotest.able` to just read data and print it (the `cat` of AbleScript I guess).
6 lines
46 B
Plaintext
6 lines
46 B
Plaintext
var data;
|
|
loop {
|
|
data read;
|
|
data print;
|
|
}
|