aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/host/ruby.lux
diff options
context:
space:
mode:
Diffstat (limited to 'new-luxc/source/luxc/lang/host/ruby.lux')
-rw-r--r--new-luxc/source/luxc/lang/host/ruby.lux14
1 files changed, 9 insertions, 5 deletions
diff --git a/new-luxc/source/luxc/lang/host/ruby.lux b/new-luxc/source/luxc/lang/host/ruby.lux
index c2bc6e95f..51b0d7ea7 100644
--- a/new-luxc/source/luxc/lang/host/ruby.lux
+++ b/new-luxc/source/luxc/lang/host/ruby.lux
@@ -1,8 +1,11 @@
(.module:
[lux #- not or and]
- (lux (data [text]
- text/format
- (coll [list "list/" Functor<List> Fold<List>]))))
+ (lux
+ (control
+ pipe)
+ (data [text]
+ text/format
+ (coll [list "list/" Functor<List> Fold<List>]))))
(type: #export Ruby Text)
@@ -15,8 +18,9 @@
"nil")
(def: #export bool
- (-> Bool Expression)
- %b)
+ (-> Bit Expression)
+ (|>> (case> true "true"
+ false "false")))
(def: #export int
(-> Int Expression)