macroscript
This is a full reimplementation of Robot Is Chill's macro-based programming language.
Changes
A few things have been changed between RIC's implementation and this one. The most notable ones include:
- Numbers are limited to f64s (no complex numbers)
- No runtime limits
- More builtin macros (check the docs!)
- Text macros (e.g.
double: [multiply/$1/2]
) aren't included by default- In order to use text macros, they have to be added using
TextMacro
.
- In order to use text macros, they have to be added using
Example
use ;
use HashMap;