tsar 0.3.0

Tsar programming language
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod config;

pub const OUTPUT_BUILD_DIR: &str = "target";
pub const INPUT_TOML: &str = "package";
pub const SOURCE_FOLDER: &str = "src";
pub const FOREIGN_FOLDER: &str = "foreign";
pub const FILE_EXTENSION: &str = "ts";
pub const MAIN_FILE_NAME: &str = "bin";

pub use config::Config;