docs: add readme

This commit is contained in:
hylo 2022-12-30 17:53:13 +01:00
parent cc588d4d35
commit f4d2a441bb
1 changed files with 23 additions and 0 deletions

23
README.org Normal file
View File

@ -0,0 +1,23 @@
#+title: Readme
* guile-toml
** Installation
For now: add this folder to =GUILE_LOAD_PATH=
** Usage
Similar approach to =guile-json=.
| TOML | Guile |
|----------------+----------------------------------|
| string | string |
| number | number (TODO: octal etc, float?) |
| key-value pair | alist |
| array | vector |
| datetime etc | TODO |
| true | #t (TODO) |
| false | #f |
To start using: =(use-modules (toml))=
** Reading TOML documents
- =(toml->scm str)=