diff options
author | Eduardo Julian | 2019-03-03 01:11:26 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-03-03 01:11:26 -0400 |
commit | bd433efacc33492705b09953d321b844d2b1c9f0 (patch) | |
tree | d58a49155ebae18f7cc0f66cf60853d4ffa568ad /new-luxc/source/luxc/lang | |
parent | 8dfd0e3992f5ae60d568793a6843dc9fb472eba7 (diff) |
Factored-out general compiler program machinery.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/translation/jvm.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/new-luxc/source/luxc/lang/translation/jvm.lux b/new-luxc/source/luxc/lang/translation/jvm.lux index 5ffb60482..01bc2b36f 100644 --- a/new-luxc/source/luxc/lang/translation/jvm.lux +++ b/new-luxc/source/luxc/lang/translation/jvm.lux @@ -120,7 +120,7 @@ [value (evaluate! library loader class-name valueI)] (wrap [class-name value])))) -(def: #export init +(def: #export host (IO Host) (io (let [library (loader.new-library []) loader (loader.memory library)] |