mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-11 09:29:59 +00:00
zig fmt
This commit is contained in:
@@ -53,7 +53,7 @@ const Narcissus = struct {
|
||||
};
|
||||
|
||||
pub fn main() void {
|
||||
var narcissus: Narcissus = Narcissus {};
|
||||
var narcissus: Narcissus = Narcissus{};
|
||||
|
||||
// Oops! We cannot leave the 'me' and 'myself' fields
|
||||
// undefined. Please set them here:
|
||||
@@ -70,7 +70,7 @@ pub fn main() void {
|
||||
// fix this call:
|
||||
const T2 = narcissus.fetchTheMostBeautifulType();
|
||||
|
||||
print("A {} loves all {}es. ", .{T1, T2});
|
||||
print("A {} loves all {}es. ", .{ T1, T2 });
|
||||
|
||||
// His final words as he was looking in
|
||||
// those waters he habitually watched
|
||||
|
||||
Reference in New Issue
Block a user