initial draw code

This commit is contained in:
2024-10-08 15:21:18 -04:00
parent 5a4e1699b3
commit dd8474ccac
5 changed files with 200 additions and 1 deletions

View File

@@ -1,5 +1,12 @@
main :: () {
print("Hello, world!");
screen := New(Screen);
init_screen(screen, 5, 2);
draw_line(screen, 0, 0, 0, 0);
print("%\n", screen.buffer);
}
#import "Console_Render";
#import "Basic";