time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

hello-world.zig (102B)


      1 const std = @import("std");
      2 
      3 pub fn main() void {
      4     std.debug.print("Hello, {s}!\n", .{"World"});
      5 }