aboutsummaryrefslogtreecommitdiff
path: root/source/program.lux
diff options
context:
space:
mode:
authorEduardo Julian2015-05-10 15:04:36 -0400
committerEduardo Julian2015-05-10 15:04:36 -0400
commit8dc736e2a383fe964d63dda6b885d41cabc6261c (patch)
tree8e4d9ddf503bbcd53023073dd8cfa4e824b85ab2 /source/program.lux
parentab7b946a980475cad1e58186ac8c929c7659f529 (diff)
- Switched to the new prefix convention for both lux's special forms and the host's.
- Made a few optimizations to speed-up the now slowed-down compiler.
Diffstat (limited to 'source/program.lux')
-rw-r--r--source/program.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/program.lux b/source/program.lux
index 2bbf3fd4f..20f7863ab 100644
--- a/source/program.lux
+++ b/source/program.lux
@@ -11,8 +11,8 @@
(list& x (filter p xs'))
(filter p xs'))))
-(jvm-program _
- (exec (println "Hello, world!")
- (|> (int:+ 2 2) ->text ($ text:++ "2 + 2 = ") println)
- (println (->text (using Int:Ord
- (< 5 10))))))
+(_jvm_program _
+ (exec (println "Hello, world!")
+ (|> (int:+ 2 2) ->text ($ text:++ "2 + 2 = ") println)
+ (println (->text (using Int:Ord
+ (< 5 10))))))