roc/compiler/parse/src/keyword.rs
2020-03-05 17:45:52 -05:00

6 lines
180 B
Rust

pub static IF: &str = "if";
pub static THEN: &str = "then";
pub static ELSE: &str = "else";
pub static WHEN: &str = "when";
pub static AS: &str = "as";
pub static IS: &str = "is";