-
Notifications
You must be signed in to change notification settings - Fork 4
/
README
26 lines (16 loc) · 836 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
NOTE: This has been forked to the 'standardml' repository.
Use the version at https://github.com/standardml/sml-json
Or you can retrieve it with smackage using:
smack down sml-json
Old readme follows:
SML-JSON
https://github.com/gian/sml-json
Gian Perrone <gdpe at itu dot dk>
This is a very basic JSON-parsing library for Standard ML.
The main use case is to instantiate the JSONParser functor with a structure
of callbacks that will be invoked by the parser itself, permitting you to
build whatever internal representation of the JSON you wish.
Running 'make' at the top level will build a test program - json-test.
Running 'make tests' will attempt to run a few tests from the tests directory.
To use this in your own programs, you really only need the sml-json.sml file.
Comments, suggestions or improvements are welcome.