1 2 3 4 5 6 7 8 9
const std = @import("std"); // greet is a placeholder function for componentization. pub fn greet(name: []const u8) []const u8 { _ = name; return "hello from zig"; } pub fn main() void {}