aboutsummaryrefslogtreecommitdiff
path: root/lib/shell/README.md
blob: 4adb8cffddbcf658e43062c7b3edc9540e8a9235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Shell

This module defines a `lang` for running shell scripts:

```tomo
use shell

>> $Shell"
    seq 5
    echo DONE
":get_output()
= "1$\n2$\n3$\n4$\n5$\nDONE"
```