mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-18 09:39:47 +00:00
12 lines
409 B
Rust
12 lines
409 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 DBG: &str = "dbg";
|
|
pub const EXPECT: &str = "expect";
|
|
pub const EXPECT_FX: &str = "expect-fx";
|
|
pub const CRASH: &str = "crash";
|
|
|
|
pub const KEYWORDS: [&str; 10] = [IF, THEN, ELSE, WHEN, AS, IS, DBG, EXPECT, EXPECT_FX, CRASH];
|