aboutsummaryrefslogtreecommitdiff
path: root/input/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'input/program.lux')
-rw-r--r--input/program.lux30
1 files changed, 20 insertions, 10 deletions
diff --git a/input/program.lux b/input/program.lux
index 6495854c1..19ee964e2 100644
--- a/input/program.lux
+++ b/input/program.lux
@@ -1,25 +1,35 @@
(;import lux
- (lux (control monoid
+ (lux (codata (stream #as S))
+ (control monoid
functor
monad
lazy
comonad)
- (data eq
- bounded
- ord
+ (data bounded
+ ## cont
+ dict
+ (either #as e)
+ eq
+ error
+ id
io
list
- state
+ maybe
number
+ ord
+ (reader #as r)
+ show
+ state
(text #as t)
- dict
- show)
- (codata (stream #refer (#except iterate)))
+ writer)
+ (host java)
(meta lux
macro
- syntax)))
+ syntax)
+ math
+ ))
-(_jvm_program args
+(program args
(case args
#;Nil
(println "Hello, world!")