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

11
petri.scm Normal file
View File

@@ -0,0 +1,11 @@
(define-module (petri)
:use-module (agar core)
:use-module (agar gui)
:export (petri-app))
(define-syntax-rule (petri-app exp ...)
(begin
(init-core)
(init-gui)
exp ...
(event-loop)))