diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-08-31 20:43:41 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-08-31 20:43:41 -0700 |
commit | e97b446ac3023d39d190911074850e686aa5f3aa (patch) | |
tree | 6d32495cf8c6179de27d334dcc3710b2fc0ea283 /translate | |
parent | a21fb73d0421960a8a0b746827455b650346978b (diff) | |
download | mu-e97b446ac3023d39d190911074850e686aa5f3aa.tar.gz |
5594 - rename 'desugar' to 'sigils'
There's going to be multiple forms of syntax sugar going forward.
Diffstat (limited to 'translate')
-rwxr-xr-x | translate | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/translate b/translate index aafb11a3..d2379814 100755 --- a/translate +++ b/translate @@ -15,11 +15,11 @@ set -e ./build -echo " desugar" -cat $* |./subx_bin run apps/desugar > a.desugar +echo " sigils" +cat $* |./subx_bin run apps/sigils > a.sigils echo " tests" -cat a.desugar |./subx_bin run apps/tests > a.tests +cat a.sigils |./subx_bin run apps/tests > a.tests echo " dquotes" cat a.tests |./subx_bin run apps/dquotes > a.dquotes |