YAMLScript
YAMLScript
Program in YAML β Code is Data
Synopsis
#!/usr/bin/env ys-0
defn main(name='world'):
say: "Hello, $name!"Description
YAMLScript is a functional programming language with a stylized YAML syntax.
YAMLScript can be used for:
Writing new programs and applications
Run with
ys file.ysOr compile to binary executable with
ys -C file.ys
Enhancing ordinary YAML files with new functional magics
Import parts of other YAML files to any node
String interpolation including function calls
Any other functionality you can dream up!
Writing reusable shared libraries
High level code instead of C
Bindable to almost any programming language
YAMLScript should be a drop-in replacement for your YAML loader!
Most existing YAML files are already valid YAMLScript files. This means that YAMLScript works as a normal YAML loader, but can also evaluate functional expressions if asked to.
Under the hood, YAMLScript code compiles to the Clojure programming language. This makes YAMLScript a complete functional programming language right out of the box.
Even though YAMLScript compiles to Clojure, and Clojure compiles to Java, there
is no dependency on Java or the JVM.
YAMLScript is compiled to a native shared library (libys.so) that can
be used by any programming language that can load shared libraries.
To see the Clojure code that YAMLScript compiles to, you can use the YAMLScript
command line utility, ys, to run:
$ ys --compile file.ysRaku Usage
File prog.raku:
use YAMLScript;
my $program = slurp 'file.ys';
my YAMLScript $ys .= new;
say $ys.load($program);File file.ys:
!ys-0:
name =: "World"
foo: [1, 2, ! inc(41)]
bar:: load("other.yaml")
baz:: "Hello, $name!"File other.yaml:
oh: HelloRun:
$ raku prog.raku
{bar => {oh => Hello}, baz => Hello, World!, foo => [1 2 42]}Installation
You can install this module like any other Raku module:
zef install YAMLScriptbut you will need to have a system install of libys.so.
One simple way to do that is with:
curl https://yamlscript.org/install | bashNote: The above command will install the latest version of the YAMLScript command line utility,
ys, and the shared library,libys.so, into~/local/binand~/.local/librespectively.
See https://github.com/yaml/yamlscript?#installing-yamlscript for more info.
See Also
Authors
License & Copyright
Copyright 2022-2026 Ingy dΓΆt Net [email protected]
This project is licensed under the terms of the MIT license.
See LICENSE for
more details.