reform 0.1.0

A symbolic manipulation toolkit which aims to handle expressions with billions of terms, taking up terabytes of diskspace.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
for $i in 1..3 {
  $a[$i+x,2] = $i;
}

$b = $a[2+x,4] + f(x);

inside $b {
  id f(x?) = $a[1+x?,2];
  id $a[x?,?a,y?] = $a[x?,?a,y?-2];
}

print $b;