1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-30 23:23:07 +00:00

Add stdi and stdout to file io.

This commit is contained in:
Calvin Rose
2017-04-30 11:15:44 -04:00
parent 88138a16b3
commit 78cdf4b184
4 changed files with 34 additions and 1 deletions

8
libs/parse.gst Normal file
View File

@@ -0,0 +1,8 @@
# Make parser
(: parser (fn [in] {
'in in
'line 0
'index 0
'states []
}))