aboutsummaryrefslogtreecommitdiff
path: root/source/program.lux
diff options
context:
space:
mode:
authorEduardo Julian2015-05-22 20:07:08 -0400
committerEduardo Julian2015-05-22 20:07:08 -0400
commitf52eb6df2e57f67e7cf30d85c6340ce00f923d6f (patch)
treeca519afee2afd631446ff6cce18161ee1558a212 /source/program.lux
parentc4ac3e692ae96d6898d8efb42faf4dfadd43f4ae (diff)
- Corrected the indentation issues in the lux files.
- Temporarily reverted back to forward apply-analysis. - Fixed an error in lux.base/show-ast. - Reader now only returns a tuple instead of a full-blown #Meta variant. - Reader now doesn't cut the strings that it reads. Instead, the "cursor" just moves around, indicating where to read. - Inlined some calculations that previously relied on try-all%.
Diffstat (limited to '')
-rw-r--r--source/program.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/program.lux b/source/program.lux
index a9451580f..cefec07d4 100644
--- a/source/program.lux
+++ b/source/program.lux
@@ -12,7 +12,7 @@
(filter p xs'))))
(_jvm_program _
- (exec (println "Hello, world!")
- (|> (int:+ 2 2) ->text ($ text:++ "2 + 2 = ") println)
- (println (->text (using Int:Ord
- (< 5 10))))))
+ (exec (println "Hello, world!")
+ (|> (int:+ 2 2) ->text ($ text:++ "2 + 2 = ") println)
+ (println (->text (using Int:Ord
+ (< 5 10))))))