Documentation
FerrScript is loosely based on LISP, so everything follows in the pattern of (
command, argument1, argument2, ...). This can get a little weird when doing math, for example: (5-5) + (3*4) would be written as (+ (- 5 5) (* 3 4)).
I plan on adding a forward math parser for FerrScript that would automatically convert forward math into something FerrScript will work with.
Quick Links:Compiling and Running ScriptsVariable TypesBuilt-in Function ListDefining FunctionsSample Scripts