diff options
Diffstat (limited to 'src/root.zig')
-rw-r--r-- | src/root.zig | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/root.zig b/src/root.zig index ecfeade..62b3398 100644 --- a/src/root.zig +++ b/src/root.zig @@ -1,10 +1,8 @@ const std = @import("std"); const testing = std.testing; -export fn add(a: i32, b: i32) i32 { - return a + b; -} +const entity = @import("ecs/entity.zig"); -test "basic add functionality" { - try testing.expect(add(3, 7) == 10); +test { + _ = entity; } |