aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/01_hello.zig
blob: d61a99913a5400a6dcd9c2faff73946f66ec0594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Oh no! This program is supposed to print "Hello world!" but it needs
// your help!
//
// Hint: Zig functions are private by default.
//       The main() function should be public.
//       Declare a public function with "pub fn ..."
//
// Try to fix the program and run `ziglings` to see if it passes.
//
const std = @import("std");

fn main() void {
    std.debug.print("Hello world!\n", .{});
}