hardcode Bool

This commit is contained in:
Folkert 2020-03-10 14:50:35 +01:00
parent fef590b9f7
commit 7fea957979
8 changed files with 34 additions and 26 deletions

View file

@ -33,6 +33,8 @@ pub struct Output {
#[derive(Clone, Debug, PartialEq)]
pub enum Expr {
// Literals
// Int and Float store a variable to generate better error messages
Int(Variable, i64),
Float(Variable, f64),
Str(Box<str>),