yamlscript

Ingy döt Net 2023-09-02T19:09:49.082869Z

Good news! The YAMLScript Python binding is now working!

$ python3 -c 'import sys,yamlscript; print(yamlscript.load(sys.argv[1]))' 'vec: (map str (range 10))'
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
See https://github.com/yaml/yamlscript/blob/clojure/Testing.md for simple instructions on trying it out. Note: use the clojure branch.

🎉 1
Ingy döt Net 2023-09-02T19:11:54.143419Z

$ git clone --branch=clojure git@github.com:yaml/yamlscript
$ cd yamlscript/
$ . .rc
$ make build
$ test-ys-string 'vec: (map str (range 10))'
+ python3 -c 'import sys,yamlscript; print(yamlscript.load(sys.argv[1]))' 'vec: (map str (range 10))'
['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
$