Basic Wordle rules

This commit is contained in:
2026-06-07 18:06:41 -06:00
parent 17fe9b6094
commit 5738b62cf9
2 changed files with 97 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
const std = @import("std");
pub fn main() void {
std.debug.print("Hello, {s}!\n", .{"World"});
}