6 lines
67 B
Rust
6 lines
67 B
Rust
pub enum Literal {
|
|
Int(i64),
|
|
Float(f64),
|
|
Bool(bool),
|
|
}
|