|
/// 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;
|
|
|
|
pub type PointerSize = usize;
|