aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/root.zig b/src/root.zig
index 00ba5a5..2bcf565 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -14,14 +14,6 @@ pub fn bufferedPrint() !void {
try stdout.flush(); // Don't forget to flush!
}
-pub fn add(a: i32, b: i32) i32 {
- return a + b;
-}
-
-test "basic add functionality" {
- try std.testing.expect(add(3, 7) == 10);
-}
-
test {
std.testing.refAllDeclsRecursive(@This());
}