summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2023-05-04 19:04:58 -0400
committerDave Gauer <dave@ratfactor.com>2023-05-04 19:04:58 -0400
commit8a3d722a33ed09fd8e534fffa0bb67d84f40528a (patch)
tree0498341288d98331acd05fe0fbf06b50fd98e7c9
parente2f3a5e5192ba9e28d51c39c258a37003cc9acb0 (diff)
Ex 001 remove ancient script reference + wording
-rw-r--r--exercises/001_hello.zig14
1 files changed, 7 insertions, 7 deletions
diff --git a/exercises/001_hello.zig b/exercises/001_hello.zig
index d2093c7..9534b60 100644
--- a/exercises/001_hello.zig
+++ b/exercises/001_hello.zig
@@ -1,18 +1,18 @@
//
-// Oh no! This program is supposed to print "Hello world!" but it needs
-// your help!
+// Oh no, this is supposed to print "Hello world!" but it needs
+// your help.
//
+// Zig functions are private by default but the main() function
+// should be public.
//
-// Zig functions are private by default but the main() function should
-// be public.
-//
-// A function is declared public with the "pub" statement like so:
+// A function is made public with the "pub" statement like so:
//
// pub fn foo() void {
// ...
// }
//
-// Try to fix the program and run `ziglings` to see if it works!
+// Perhaps knowing this well help solve the errors we're getting
+// with this little program?
//
const std = @import("std");