diff options
author | Eduardo Julian | 2019-04-19 00:57:04 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-04-19 00:57:04 -0400 |
commit | 7ac0905fd80dce045d6608c4a3c449c466ae43ab (patch) | |
tree | 7a4468791f88ef3c42e7e6d040eb51aa89b1efed /stdlib/source/test | |
parent | 9c495323d4fb683e2293d1230e37a566efbd7eb3 (diff) |
Extracted the type-parsing machinery into its own module.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/test/lux.lux | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/stdlib/source/test/lux.lux b/stdlib/source/test/lux.lux index 08bc451b1..ab5d2e1d4 100644 --- a/stdlib/source/test/lux.lux +++ b/stdlib/source/test/lux.lux @@ -59,7 +59,9 @@ ## ["._" concatenative] ## ["._" predicate] ## [monad - ## ["._" free]]] + ## ["._" free]] + ## [parser + ## [type (#+)]]] ## [data ## ["._" env] ## ["._" trace] @@ -345,5 +347,6 @@ (program: args (<| io _.run! - (_.times 100) + ## (_.times 100) + (_.seed 8070500311708372420) ..test)) |