1pub mod cli;
2pub mod cmd;
3mod download;
4pub mod proxy;
5
6pub use cli::Cli;
7
8pub const VERSION: &str = env!("CARGO_PKG_VERSION");
9
10pub const BANNER: &str = color_print::cstr!(
11 r#"
12 ___ ___ ___ ___
13 /\ \ /\ \ /\ \ /\__\
14 /::\ \ /::\ \ /::\ \ /:/ /
15 /:/\:\ \ /:/\:\ \ /:/\ \ \ /:/__/
16 /:/ \:\ \ /::\~\:\ \ _\:\~\ \ \ /::\ \ ___
17 /:/__/ \:\__\ /:/\:\ \:\__\ /\ \:\ \ \__\ /:/\:\ /\__\
18 \:\ \ \/__/ \/__\:\/:/ / \:\ \:\ \/__/ \/__\:\/:/ /
19 \:\ \ \::/ / \:\ \:\__\ \::/ /
20 \:\ \ /:/ / \:\/:/ / /:/ /
21 \:\__\ /:/ / \::/ / /:/ /
22 \/__/ \/__/ \/__/ \/__/
23
24 The <green><bold>Nash</bold></green> programming language.
25
26 <magenta>repo:</magenta> <blue><italic><dim>https://github.com/nash-script/compiler</dim></italic></blue>
27 <magenta>docs:</magenta> <blue><italic><dim>https://nash-script.dev</dim></italic></blue>
28 <magenta>chat:</magenta> <blue><italic><dim>https://discord.gg/3qQGrKT3eE</dim></italic></blue>"#
29);