17 lines
332 B
Plaintext
17 lines
332 B
Plaintext
const std = #import("std");
|
|
const build = std.build;
|
|
|
|
const main = fn() *!void {
|
|
const executable = Executable{
|
|
.target = .{
|
|
.cpu = .x86_64,
|
|
.os = .linux,
|
|
.abi = .gnu,
|
|
},
|
|
.main_source_path = "main.nat",
|
|
.name = "first",
|
|
};
|
|
|
|
try executable.compile();
|
|
}
|