Implement Aliasing Support
Implements support for creating aliases, resolving issue #215 (closed). I've implemented the syntax to utilize the existing let
keyword, like so:
alias ls = "ls --color"
ls -l
# Expands to and executes `ls --color -l`
Implements support for creating aliases, resolving issue #215 (closed). I've implemented the syntax to utilize the existing let
keyword, like so:
alias ls = "ls --color"
ls -l
# Expands to and executes `ls --color -l`