_New flatten command_
There's now a flatten command that can take tables nested inside of the main table and flatten their contents into the main table.
### More `math` commands (morbatex, gillespiecd, fdncred)
You can now use rounding in math operations:
```
> echo [1.5 2.3 -3.1] | math ceil
───┬────
0 │ 2
1 │ 3
2 │ -3
───┴────
> echo [1.5 2.3 -3.1] | math floor
───┬────
0 │ 1
1 │ 2
2 │ -4
───┴────