SeraphScript/src/defines.rs

5 lines
248 B
Rust
Raw Normal View History

2021-05-15 14:53:53 +00:00
/// 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;