This document is in the process of being rewritten, so parts are incorrect.
This document assumes you are familiar with Ligature's data model.
Wander is a scripting language for working with Ligature's data model. It is a very simple programming language that is missing many features most languages possess. It takes inspiration from several programming paradigms including functional programming, logic programming, and declarative programming. Its main features are allowing users to easily write out Ligature Networks and use commands on them to query and transform them.
Work on Wander is still in early days. Expect changes and some differences between this document and implementations for the time being.
A Wander script is made up of a list of commands. Below is pseudocode of Wander's syntax. It extends Ligature's syntax.
Quote = '(' (Argument | ',')* ')'
Argument = Element | Network | Quote | Literal | Variable
Call = Element Argument*
Assignment = Variable '=' Argument | Call
Statement = Assignment | Call
Script = (Statement ( ',' Statement )* ','?)?
When you run a Wander script each call is interpreted separately and in the order it is recieved.
Calls in Wander are made up of a command name (an element) and its arguments. Calls can be separated by commas.
function-name arg1 arg2,
function-name arg1 { a b c } (inner-call { another : network })