diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-07-14 22:54:08 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2022-07-14 22:54:08 +0200 |
commit | 1183a93676b545dfe9b15ecada0af0c35f2ebbaa (patch) | |
tree | b1d62bc856c98bf34d8bb74a483142faaa8b4ea0 | |
parent | 1ece633465755b7dc17b41e9d7a711eeee5f9684 (diff) |
Accept multiple args in main
-rw-r--r-- | bytepusher.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bytepusher.scm b/bytepusher.scm index b71861e..e822073 100644 --- a/bytepusher.scm +++ b/bytepusher.scm @@ -230,7 +230,7 @@ ")\n")))) (loop))) -(define (main) +(define (main . args) (load-program! "tests/palette.bp") (sdl-init) (call-with-window |