| ... | ... | @@ -3,19 +3,19 @@ const std = @import("std"); |
| 3 | 3 | const ansi = @import("./lib.zig"); |
| 4 | 4 | |
| 5 | 5 | pub fn main() anyerror!void { |
| 6 | | std.debug.warn(comptime ansi.color.Fg(.Red, "All your codebase are belong to us.\n"), .{}); |
| 7 | | std.debug.warn(comptime ansi.color.Fg(.Green, "All your codebase are belong to us.\n"), .{}); |
| 8 | | std.debug.warn(comptime ansi.color.Fg(.Yellow, "All your codebase are belong to us.\n"), .{}); |
| 9 | | std.debug.warn(comptime ansi.color.Fg(.Blue, "All your codebase are belong to us.\n"), .{}); |
| 10 | | std.debug.warn(comptime ansi.color.Fg(.Magenta, "All your codebase are belong to us.\n"), .{}); |
| 11 | | std.debug.warn(comptime ansi.color.Fg(.Cyan, "All your codebase are belong to us.\n"), .{}); |
| 6 | std.debug.print(comptime ansi.color.Fg(.Red, "All your codebase are belong to us.\n"), .{}); |
| 7 | std.debug.print(comptime ansi.color.Fg(.Green, "All your codebase are belong to us.\n"), .{}); |
| 8 | std.debug.print(comptime ansi.color.Fg(.Yellow, "All your codebase are belong to us.\n"), .{}); |
| 9 | std.debug.print(comptime ansi.color.Fg(.Blue, "All your codebase are belong to us.\n"), .{}); |
| 10 | std.debug.print(comptime ansi.color.Fg(.Magenta, "All your codebase are belong to us.\n"), .{}); |
| 11 | std.debug.print(comptime ansi.color.Fg(.Cyan, "All your codebase are belong to us.\n"), .{}); |
| 12 | 12 | |
| 13 | | std.debug.warn("\n", .{}); |
| 13 | std.debug.print("\n", .{}); |
| 14 | 14 | |
| 15 | | std.debug.warn(comptime ansi.color.Bg(.Red, "All your codebase are belong to us.\n"), .{}); |
| 16 | | std.debug.warn(comptime ansi.color.Bg(.Green, "All your codebase are belong to us.\n"), .{}); |
| 17 | | std.debug.warn(comptime ansi.color.Bg(.Yellow, "All your codebase are belong to us.\n"), .{}); |
| 18 | | std.debug.warn(comptime ansi.color.Bg(.Blue, "All your codebase are belong to us.\n"), .{}); |
| 19 | | std.debug.warn(comptime ansi.color.Bg(.Magenta, "All your codebase are belong to us.\n"), .{}); |
| 20 | | std.debug.warn(comptime ansi.color.Bg(.Cyan, "All your codebase are belong to us.\n"), .{}); |
| 15 | std.debug.print(comptime ansi.color.Bg(.Red, "All your codebase are belong to us.\n"), .{}); |
| 16 | std.debug.print(comptime ansi.color.Bg(.Green, "All your codebase are belong to us.\n"), .{}); |
| 17 | std.debug.print(comptime ansi.color.Bg(.Yellow, "All your codebase are belong to us.\n"), .{}); |
| 18 | std.debug.print(comptime ansi.color.Bg(.Blue, "All your codebase are belong to us.\n"), .{}); |
| 19 | std.debug.print(comptime ansi.color.Bg(.Magenta, "All your codebase are belong to us.\n"), .{}); |
| 20 | std.debug.print(comptime ansi.color.Bg(.Cyan, "All your codebase are belong to us.\n"), .{}); |
| 21 | 21 | } |