diff options
| author | Jonathan Halmen <jonathan@halmen.org> | 2021-11-05 16:44:29 +0100 |
|---|---|---|
| committer | Jonathan Halmen <jonathan@halmen.org> | 2021-11-05 17:46:56 +0100 |
| commit | 29d32bfa79f462ccae2d392ae3096c63c927d29f (patch) | |
| tree | 3e6ea609c66930457907903329cdd947edafbb78 /exercises/065_builtins2.zig | |
| parent | 4c7eebbbfca3337b5e3af33eb34979dc56716178 (diff) | |
fix whitespace line-endings
Diffstat (limited to 'exercises/065_builtins2.zig')
| -rw-r--r-- | exercises/065_builtins2.zig | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/exercises/065_builtins2.zig b/exercises/065_builtins2.zig index ef41797..c9257ff 100644 --- a/exercises/065_builtins2.zig +++ b/exercises/065_builtins2.zig @@ -1,7 +1,7 @@ // // Zig has builtins for mathematical operations such as... // -// @sqrt @sin @cos +// @sqrt @sin @cos // @exp @log @floor // // ...and lots of type casting operations such as... @@ -20,18 +20,18 @@ // by exploring just THREE of Zig's MANY introspection abilities: // // 1. @This() type -// +// // Returns the innermost struct, enum, or union that a function // call is inside. // // 2. @typeInfo(comptime T: type) @import("std").builtin.TypeInfo -// +// // Returns information about any type in a TypeInfo union which // will contain different information depending on which type // you're examining. -// +// // 3. @TypeOf(...) type -// +// // Returns the type common to all input parameters (each of which // may be any expression). The type is resolved using the same // "peer type resolution" process the compiler itself uses when @@ -46,7 +46,7 @@ const Narcissus = struct { me: *Narcissus = undefined, myself: *Narcissus = undefined, echo: void = undefined, - + fn fetchTheMostBeautifulType() type { return @This(); } |
