Files
fudge2.1/src/ast/literal.rs
2025-10-20 20:22:01 +02:00

6 lines
67 B
Rust

pub enum Literal {
Int(i64),
Float(f64),
Bool(bool),
}