mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-08-03 15:15:37 +00:00
Changed three dots to colons.
This commit is contained in:
parent
be34dd7518
commit
6d73746f65
|
@ -281,7 +281,7 @@ const ZiglingStep = struct {
|
||||||
|
|
||||||
fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void {
|
fn run(self: *ZiglingStep, exe_path: []const u8, _: *std.Progress.Node) !void {
|
||||||
resetLine();
|
resetLine();
|
||||||
print("Checking {s}\n", .{self.exercise.main_file});
|
print("Checking: {s}\n", .{self.exercise.main_file});
|
||||||
|
|
||||||
const b = self.step.owner;
|
const b = self.step.owner;
|
||||||
|
|
||||||
|
@ -376,7 +376,7 @@ const ZiglingStep = struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 {
|
fn compile(self: *ZiglingStep, prog_node: *std.Progress.Node) !?[]const u8 {
|
||||||
print("Compiling {s}\n", .{self.exercise.main_file});
|
print("Compiling: {s}\n", .{self.exercise.main_file});
|
||||||
|
|
||||||
const b = self.step.owner;
|
const b = self.step.owner;
|
||||||
const exercise_path = self.exercise.main_file;
|
const exercise_path = self.exercise.main_file;
|
||||||
|
@ -839,7 +839,7 @@ const exercises = [_]Exercise{
|
||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "060_floats.zig",
|
.main_file = "060_floats.zig",
|
||||||
.output = "Shuttle liftoff weight: 1995796kg",
|
.output = "Shuttle liftoff weight: 2032092kg",
|
||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "061_coercions.zig",
|
.main_file = "061_coercions.zig",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user