mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
made constants public again for testing
This commit is contained in:
parent
d846c8bc01
commit
bfa2bc60f6
1 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ const BLUE: &str = "\u{001b}[36m";
|
||||||
const PINK: &str = "\u{001b}[35m";
|
const PINK: &str = "\u{001b}[35m";
|
||||||
const END_COL: &str = "\u{001b}[0m";
|
const END_COL: &str = "\u{001b}[0m";
|
||||||
|
|
||||||
const WELCOME_MESSAGE: &str = concatcp!(
|
pub const WELCOME_MESSAGE: &str = concatcp!(
|
||||||
"\n The rockin’ ",
|
"\n The rockin’ ",
|
||||||
BLUE,
|
BLUE,
|
||||||
"roc repl",
|
"roc repl",
|
||||||
|
@ -20,8 +20,8 @@ const WELCOME_MESSAGE: &str = concatcp!(
|
||||||
END_COL,
|
END_COL,
|
||||||
"\n\n"
|
"\n\n"
|
||||||
);
|
);
|
||||||
const INSTRUCTIONS: &str = "Enter an expression, or :help, or :exit/:q.\n";
|
pub const INSTRUCTIONS: &str = "Enter an expression, or :help, or :exit/:q.\n";
|
||||||
const PROMPT: &str = concatcp!("\n", BLUE, "»", END_COL, " ");
|
pub const PROMPT: &str = concatcp!("\n", BLUE, "»", END_COL, " ");
|
||||||
const ELLIPSIS: &str = concatcp!(BLUE, "…", END_COL, " ");
|
const ELLIPSIS: &str = concatcp!(BLUE, "…", END_COL, " ");
|
||||||
|
|
||||||
mod eval;
|
mod eval;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue