You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
546 B
18 lines
546 B
9 months ago
|
const std = @import("std");
|
||
|
|
||
|
pub fn main() !void {
|
||
|
std.debug.print("All your {s} are belong to us.\n", .{"codebase"});
|
||
|
const stdout_file = std.io.getStdOut().writer();
|
||
|
var bw = std.io.bufferedWriter(stdout_file);
|
||
|
const stdout = bw.writer();
|
||
|
try stdout.print("Run `zig build test` to run the tests.\n", .{});
|
||
|
try bw.flush();
|
||
|
}
|
||
|
|
||
|
test "simple test" {
|
||
|
var list = std.ArrayList(i32).init(std.testing.allocator);
|
||
|
defer list.deinit();
|
||
|
try list.append(42);
|
||
|
try std.testing.expectEqual(@as(i32, 42), list.pop());
|
||
|
}
|