mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-12 23:18:03 -05:00
7 lines
171 B
Rust
7 lines
171 B
Rust
use crate::asm::Value;
|
|
|
|
pub const CONSTANTS: [(&'static str, Value); 2] = [
|
|
("NaN", Value::Number(std::f64::NAN)),
|
|
("Infinity", Value::Number(std::f64::INFINITY)),
|
|
];
|