Switch to a autotools build system and format

This commit is contained in:
2026-04-17 12:19:37 -05:00
parent 3657b8de60
commit ceffd1869a
17 changed files with 554 additions and 110 deletions

9
examples/hello-world.scm Normal file
View File

@@ -0,0 +1,9 @@
(use-modules (petri))
(define (main . args)
(init "Hello world!" 0)
(let* ([win (make-window)]
[label (make-label win "Hello world!")])
(window-show win)
(event-loop))
(quit))