mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-12-22 14:03:10 -05:00
Improve instructions.
This commit is contained in:
parent
1c73ad29a7
commit
a5485bb8a2
1 changed files with 5 additions and 4 deletions
|
@ -523,14 +523,15 @@ const ZiglingStep = struct {
|
||||||
const path = self.exercise.main_file;
|
const path = self.exercise.main_file;
|
||||||
const key = self.exercise.key();
|
const key = self.exercise.key();
|
||||||
|
|
||||||
print("\n{s}Edit exercises/{s} and run this again.{s}", .{
|
print("\n{s}Edit exercises/{s} and run 'zig build' again.{s}\n", .{
|
||||||
red_text, path, reset_text,
|
red_text, path, reset_text,
|
||||||
});
|
});
|
||||||
|
|
||||||
const format =
|
const format =
|
||||||
\\
|
\\
|
||||||
\\{s}To continue from this zigling, use this command:{s}
|
\\{s}To compile only this exercise, you can also use this command:{s}
|
||||||
\\ {s}zig build -Dn={s}{s}
|
\\{s}zig build -Dn={s}{s}
|
||||||
|
\\
|
||||||
\\
|
\\
|
||||||
;
|
;
|
||||||
print(format, .{ red_text, reset_text, bold_text, key, reset_text });
|
print(format, .{ red_text, reset_text, bold_text, key, reset_text });
|
||||||
|
@ -665,7 +666,7 @@ const exercises = [_]Exercise{
|
||||||
.{
|
.{
|
||||||
.main_file = "001_hello.zig",
|
.main_file = "001_hello.zig",
|
||||||
.output = "Hello world!",
|
.output = "Hello world!",
|
||||||
.hint = "DON'T PANIC!\nRead the error above.\nSee how it has something to do with 'main'?\nOpen up the source file as noted and read the comments.\nYou can do this!",
|
.hint = "DON'T PANIC!\nRead the error above.\nSee how it has something to do with 'main'?\nOpen up the source file as noted and read the comments.\nYou can do this!\n",
|
||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "002_std.zig",
|
.main_file = "002_std.zig",
|
||||||
|
|
Loading…
Reference in a new issue