luna
/
vig
1
2
Fork 0
Dieser Commit ist enthalten in:
Luna 2019-06-03 21:29:53 -03:00
Commit ba9b1064f2
3 geänderte Dateien mit 21 neuen und 0 gelöschten Zeilen

1
.gitignore vendored Normale Datei
Datei anzeigen

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

15
build.zig Normale Datei
Datei anzeigen

@ -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 Normale Datei
Datei anzeigen

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