diff --git a/README.md b/README.md index 696283b..afdb165 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # bnyx +DISCLAIMER! Im new to zig. My code is shit or totally chatgpt
a boot image extraction utility, simple enough ( you dont probably need this if you are a eagler developer. ). bnyx can do basic stuff like : - print out cmdline diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..49413c5 --- /dev/null +++ b/build.sh @@ -0,0 +1,9 @@ +# why would you use a bs its just one file +echo "trying something DEVIOUS... ma-LICIOUS.." + +if zig build-exe src/bnyx.zig; then + echo "success!" + file ./bnyx +else + echo "it failed :(" +fi \ No newline at end of file diff --git a/src/bnyx.zig b/src/bnyx.zig new file mode 100644 index 0000000..4a08d56 --- /dev/null +++ b/src/bnyx.zig @@ -0,0 +1,5 @@ +const std = @import("std"); + +pub fn main() !void { + std.debug.print("Hello World!", .{}); +}