This commit is contained in:
nothke
2024-08-08 20:39:18 +02:00
commit 64be90de80
11 changed files with 726 additions and 0 deletions

9
src/other.zig Normal file
View File

@@ -0,0 +1,9 @@
const main = @import("main.zig");
pub const pi = 3.14;
pub fn add() i32 {
try main.main();
return 3;
}