diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-06-20 22:45:13 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-06-20 23:07:23 -0700 |
commit | 3fd3f3a1c77bcfe4009332ccadfad10586489e37 (patch) | |
tree | c47a35f81426c8d941da3740e892ad9d36c2aa09 /shell | |
parent | 9ae724e1ec928df0183285a006452bffdca7c014 (diff) | |
download | mu-3fd3f3a1c77bcfe4009332ccadfad10586489e37.tar.gz |
this is how we create aliases
Diffstat (limited to 'shell')
-rw-r--r-- | shell/data.limg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/data.limg b/shell/data.limg index 1f9ecee2..222e24cc 100644 --- a/shell/data.limg +++ b/shell/data.limg @@ -42,7 +42,7 @@ if (f (car xs)) xs (some f (cdr xs))]) - (any . some) + (any . [define any some]) (all . [def (all f xs) if (no xs) 1 |