Created
December 11, 2019 13:25
-
-
Save okram/e6ee4eed147b7f740ab6b074a9084361 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mmlang> 1 => x | |
==>1~x | |
mmlang> 1 => x => [plus,2] | |
==>3 | |
mmlang> 1 => x => [plus,2] => y | |
==>3~y | |
mmlang> 1 => x => [plus,2] => y => x | |
mmlang> 1 => x => [plus,2] => y => [minus,2] => x | |
==>1~x | |
mmlang> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment