Rename Let to Assign

This commit is contained in:
Richard Feldman 2019-06-13 00:24:54 -04:00
parent d6bfc42142
commit 41ddfc149b
5 changed files with 26 additions and 26 deletions

View file

@ -13,7 +13,7 @@ pub enum Expr {
Char(char),
Var(Ident),
Let(Pattern, Box<Expr>, Box<Expr>),
Assign(Pattern, Box<Expr>, Box<Expr>),
// Functions
Func(Ident, Vec<Expr>),