initial commit

This commit is contained in:
Luna 2019-06-03 21:29:53 -03:00
commit ba9b1064f2
3 muutettua tiedostoa jossa 21 lisäystä ja 0 poistoa

1
.gitignore vendored Normal file
Näytä tiedosto

@ -0,0 +1 @@
zig-cache/

15
build.zig Normal file
Näytä tiedosto

@ -0,0 +1,15 @@
const Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("spoodle", "src/main.zig");
exe.setBuildMode(mode);
const run_cmd = exe.run();
const run_step = b.step("run", "Run the app");
run_step.dependOn(&run_cmd.step);
b.default_step.dependOn(&exe.step);
b.installArtifact(exe);
}

5
src/main.zig Normal file
Näytä tiedosto

@ -0,0 +1,5 @@
const std = @import("std");
pub fn main() anyerror!void {
std.debug.warn("All your base are belong to us.\n");
}