mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
9 lines
282 B
Rust
9 lines
282 B
Rust
pub const IF: &str = "if";
|
|
pub const THEN: &str = "then";
|
|
pub const ELSE: &str = "else";
|
|
pub const WHEN: &str = "when";
|
|
pub const AS: &str = "as";
|
|
pub const IS: &str = "is";
|
|
pub const EXPECT: &str = "expect";
|
|
|
|
pub const KEYWORDS: [&str; 7] = [IF, THEN, ELSE, WHEN, AS, IS, EXPECT];
|