From 3a3f7d32cfb71aa8eaf093188aad121ee33f33a5 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Thu, 23 May 2024 20:16:01 -0500 Subject: [PATCH] vaxis: add a logo --- src/main.zig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main.zig b/src/main.zig index 4c73892..cb8225f 100644 --- a/src/main.zig +++ b/src/main.zig @@ -27,6 +27,14 @@ pub fn init(alloc: std.mem.Allocator, opts: Vaxis.Options) !Vaxis { return Vaxis.init(alloc, opts); } +/// the vaxis logo. In PixelCode +pub const logo = + \\▄ ▄ ▄▄▄ ▄ ▄ ▄▄▄ ▄▄▄ + \\█ █ █▄▄▄█ ▀▄ ▄▀ █ █ ▀ + \\▀▄ ▄▀ █ █ ▄▀▄ █ ▀▀▀▄ + \\ ▀▄▀ █ █ █ █ ▄█▄ ▀▄▄▄▀ +; + test { std.testing.refAllDecls(@This()); std.testing.refAllDecls(widgets);