diff options
author | Eduardo Julian | 2018-07-20 22:46:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2018-07-20 22:46:38 -0400 |
commit | 518a7467c4e0ef904afa8c59cff3594d6f63c552 (patch) | |
tree | 509598d219a780d14a8fe6ccd46545f701a1cd17 /stdlib/test/test/lux.lux | |
parent | b1315d6dc1e4bed4a3bf35e8c6f67d88c2aa7b55 (diff) |
No longer giving default aliases to un-prefixed imports.
Diffstat (limited to 'stdlib/test/test/lux.lux')
-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 a4730e2ef..5325d9b79 100644 --- a/stdlib/test/test/lux.lux +++ b/stdlib/test/test/lux.lux @@ -2,14 +2,14 @@ [lux #* [control [monad (#+ do)]] - [math] - ["r" math/random] [data - [maybe] + ["." maybe] [number - [i64]] + ["." i64]] [text ("text/" Equivalence<Text>) format]] + ["." math + ["r" random]] ["." macro ["s" syntax (#+ syntax:)]] test]) |