diff options
author | Eduardo Julian | 2017-10-16 23:24:21 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-10-16 23:24:21 -0400 |
commit | 6ffd0692d840298850307497f5275c44d0ff8f5d (patch) | |
tree | 0f93440bfc7aea35ba4583fa23828cac782bbdbc /stdlib/test/test/lux.lux | |
parent | b5e5cceb9f985a31581a76d71301b393d88f34a8 (diff) |
- Re-named "Lux" type to "Meta".
- Moved lux/type/* under lux/meta/*.
Diffstat (limited to '')
-rw-r--r-- | stdlib/test/test/lux.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/test/test/lux.lux b/stdlib/test/test/lux.lux index 5ff53793c..88f8c6f79 100644 --- a/stdlib/test/test/lux.lux +++ b/stdlib/test/test/lux.lux @@ -8,8 +8,8 @@ (data [maybe] [text "T/" Eq<Text>] text/format) - [macro] - (macro ["s" syntax #+ syntax:]))) + [meta] + (meta ["s" syntax #+ syntax:]))) (context: "Value identity." [size (|> r;nat (:: @ map (|>. (n.% +100) (n.max +10)))) @@ -163,10 +163,10 @@ (test "Can have defaults for Maybe values." (and (is "yolo" (maybe;default "yolo" - #;None)) + #;None)) (is "lol" (maybe;default "yolo" - (#;Some "lol"))))) + (#;Some "lol"))))) )) (template: (hypotenuse x y) |