1const std = @import("std"); 2 3export fn strFromFloatHelp(float: f64) void { 4 var buf: [400]u8 = undefined; 5 _ = std.fmt.bufPrint(&buf, "{d}", .{float}) catch unreachable; 6}