SeraphScript/src/defines.rs

5 lines
248 B
Rust

/// The size integers use internally to store literals and do compile time calculations.
pub type LiteralInt = i64;
/// The size floating point numbers use internally to store literals and do compile time calculations.
pub type LiteralFloat = f64;