This commit is contained in:
2024-10-10 18:16:13 -05:00
commit 3657b8de60
11 changed files with 118 additions and 0 deletions

12
guile-agar/driver.scm Normal file
View File

@@ -0,0 +1,12 @@
(use-modules (agar core))
(use-modules (agar gui))
(init-core)
(init-gui)
(define my-window (make-window))
(define my-label (make-label my-window))
(set-label-text my-label "Hi Agar")
(show-window my-window)
(event-loop)