mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 23:31:12 +00:00
Introduce Bool and rename String to Str
This commit is contained in:
parent
46f281d399
commit
be7e65bc88
2 changed files with 5 additions and 3 deletions
|
@ -4,12 +4,12 @@ pub enum Expr {
|
|||
// Literals
|
||||
Int(i64),
|
||||
Frac(i64, u64),
|
||||
String(String),
|
||||
Str(String),
|
||||
Char(char),
|
||||
Bool(bool),
|
||||
|
||||
Var(String),
|
||||
Let(Pattern, Box<Expr>, Box<Expr>),
|
||||
Pattern(Pattern),
|
||||
|
||||
// Functions
|
||||
Func(String, Box<Expr>),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue