| author | |
| committer | |
| log | 7fd89da8f4e2cd524aeb0e88e0a22ca56a438b16 |
| tree | a58adac37440372ca005061e2afa439fcb199988 |
| parent | 4c50d70fc94e765b1bf7b5e13f629ee1eea887e4 |
1 files changed, 5 insertions(+), 0 deletions(-)
src/main.zig+5| ... | @@ -25,6 +25,11 @@ pub fn main() !void { | ... | @@ -25,6 +25,11 @@ pub fn main() !void { |
| 25 | @tagName(builtin.cpu.arch), | 25 | @tagName(builtin.cpu.arch), |
| 26 | @tagName(builtin.abi), | 26 | @tagName(builtin.abi), |
| 27 | }); | 27 | }); |
| 28 | u.print("", .{}); | ||
| 29 | u.print("The commands available are:", .{}); | ||
| 30 | inline for (std.meta.declarations(available)) |decl| { | ||
| 31 | u.print(" - {s}", .{decl.name}); | ||
| 32 | } | ||
| 28 | return; | 33 | return; |
| 29 | } | 34 | } |
| 30 | 35 |