mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
8 lines
144 B
Zig
8 lines
144 B
Zig
const std = @import("std");
|
|
|
|
const inf = std.math.inf(f32);
|
|
const negative_inf = -std.math.inf(f64);
|
|
const nan = std.math.nan(f128);
|
|
|
|
// syntax
|