mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 02:48:50 +00:00
7 lines
178 B
Zig
7 lines
178 B
Zig
|
const std = @import("std");
|
||
|
|
||
|
export fn strFromFloatHelp(float: f64) void {
|
||
|
var buf: [400]u8 = undefined;
|
||
|
_ = std.fmt.bufPrint(&buf, "{d}", .{float}) catch unreachable;
|
||
|
}
|