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