SeraphScript/src/defines.rs

7 lines
279 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;
2022-04-02 21:30:05 +00:00
pub type PointerSize = usize;