1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-15 05:04:49 +00:00
janet/libs/parse.gst

9 lines
91 B
Plaintext
Raw Normal View History

2017-04-30 15:15:44 +00:00
# Make parser
(: parser (fn [in] {
'in in
'line 0
'index 0
'states []
}))