blob: 65b6b64c390683dc720de36dfeaa25ba8a7811a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// https://github.com/nvim-treesitter/nvim-treesitter/pull/3269
const std = @import("std");
pub fn main() anyerror!void {
std.log.info("All your codebase are belong to us.", .{});
}
test "basic test" {
try std.testing.expectEqual(10, 3 + 7);
}
|