You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
367 B
Zig
16 lines
367 B
Zig
4 years ago
|
const std = @import("std");
|
||
|
const os = std.os;
|
||
|
const print = std.debug.print;
|
||
|
|
||
|
pub fn main() !void {
|
||
|
var buf: [256]u8 = undefined;
|
||
|
var fba = std.heap.FixedBufferAllocator.init(&buf);
|
||
|
var allocator = &fba.allocator;
|
||
|
|
||
|
const cwd = try allocator.alloc(u8, 256);
|
||
|
defer allocator.free(cwd);
|
||
|
|
||
|
const z = try os.getcwd(cwd);
|
||
|
print("{}\n", .{z});
|
||
|
}
|