zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

float_special_values.zig (144B) - Raw


      1 const std = @import("std");
      2 
      3 const inf = std.math.inf(f32);
      4 const negative_inf = -std.math.inf(f64);
      5 const nan = std.math.nan(f128);
      6 
      7 // syntax