feat: add decoder.scm and encoder.scm for testing

This commit is contained in:
hylo 2022-12-30 18:28:15 +01:00
parent c886ae523f
commit b65135ef04
2 changed files with 9 additions and 0 deletions

9
test/encoder.scm Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env -S guile -s
!#
(use-modules
(toml builder)
(json))
(define scm (json->scm (current-input-port)))
(scm->toml scm)