diff options
author | Eduardo Julian | 2016-12-17 15:28:36 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-12-17 15:28:36 -0400 |
commit | a60af2d673ef6b3c7090e454a1edc59838f3540d (patch) | |
tree | b30b2893426a606e93c7bca1ca5e91a3f2012c68 /stdlib/source/lux/compiler.lux | |
parent | e0c21be8ded9924bb0fde7ae5b7bd422d77a6b03 (diff) |
- Added tests for lux/macro/poly/*
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/compiler.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/compiler.lux b/stdlib/source/lux/compiler.lux index fd438b1a3..437389717 100644 --- a/stdlib/source/lux/compiler.lux +++ b/stdlib/source/lux/compiler.lux @@ -98,8 +98,8 @@ (#;Right [compiler' output]) (#;Right [compiler' output])))) -(def: #export (assert test message) - (-> Bool Text (Lux Unit)) +(def: #export (assert message test) + (-> Text Bool (Lux Unit)) (lambda [compiler] (if test (#;Right [compiler []]) |