Environment fixes

This commit is contained in:
BirDt_ 2026-04-28 15:33:58 +08:00
parent 742017a4cd
commit ac2284ce5c
2 changed files with 15 additions and 4 deletions

View file

@ -1,4 +1,4 @@
(module (engine loader)
(module (engine loader) ()
(import (scheme)
(chicken base)
(chicken process-context)
@ -12,6 +12,7 @@
(srfi 1)
(srfi 99))
(load (last (command-line-arguments)))
(load (last (command-line-arguments))
(lambda (form)
(eval form (interaction-environment))))
)