about summary refs log tree commit diff stats
path: root/fff.parse.sld
diff options
context:
space:
mode:
authorCase Duckworth2023-05-16 23:04:27 -0500
committerCase Duckworth2023-05-16 23:04:27 -0500
commit28d6025a67a6b4c6ee038dd81ca89040406360c6 (patch)
tree60900133060afcafedce90026ab2a12d043f2873 /fff.parse.sld
parentSupport vector references (diff)
downloadfff-28d6025a67a6b4c6ee038dd81ca89040406360c6.tar.gz
fff-28d6025a67a6b4c6ee038dd81ca89040406360c6.zip
Initial commit (chicken version)
Diffstat (limited to 'fff.parse.sld')
-rw-r--r--fff.parse.sld20
1 files changed, 20 insertions, 0 deletions
diff --git a/fff.parse.sld b/fff.parse.sld new file mode 100644 index 0000000..1f9eac3 --- /dev/null +++ b/fff.parse.sld
@@ -0,0 +1,20 @@
1;;; (fff parse) --- parse fff format
2;; (C) Case Duckworth <acdw@acdw.net>
3
4#+chicken (import (r7rs))
5
6(define-library (fff parse)
7 (export
8 ;; FFF objects
9 fff-val
10 fff-key
11 fff-ref
12 fff-comment
13 fff-item
14 fff-item*
15 fff-object
16 fff-document
17 ;; Parsing procedure
18 parse-fff)
19
20 (include "fff.parse.ss"))