add c and jai

This commit is contained in:
2026-07-13 13:02:47 -04:00
parent cf8342f8d4
commit c5b14d7c41
33 changed files with 6306 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
swap_buffer :: (screen: *Screen) {
using screen;
write_string(cast(string)buffer);
}
clear_screen :: (screen: *Screen) {
for 0..screen.height * screen.width {
print_color(" ", color = .BLACK);
}
}