diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/data/number/complex.lux (renamed from stdlib/source/lux/math/complex.lux) | 0 | ||||
-rw-r--r-- | stdlib/source/lux/data/number/ratio.lux (renamed from stdlib/source/lux/math/ratio.lux) | 0 | ||||
-rw-r--r-- | stdlib/source/lux/math/random.lux (renamed from stdlib/source/lux/random.lux) | 5 | ||||
-rw-r--r-- | stdlib/source/lux/test.lux | 2 |
4 files changed, 4 insertions, 3 deletions
diff --git a/stdlib/source/lux/math/complex.lux b/stdlib/source/lux/data/number/complex.lux index 87b1a7d18..87b1a7d18 100644 --- a/stdlib/source/lux/math/complex.lux +++ b/stdlib/source/lux/data/number/complex.lux diff --git a/stdlib/source/lux/math/ratio.lux b/stdlib/source/lux/data/number/ratio.lux index fb86b1fed..fb86b1fed 100644 --- a/stdlib/source/lux/math/ratio.lux +++ b/stdlib/source/lux/data/number/ratio.lux diff --git a/stdlib/source/lux/random.lux b/stdlib/source/lux/math/random.lux index 4cbc2b57b..e828cb715 100644 --- a/stdlib/source/lux/random.lux +++ b/stdlib/source/lux/math/random.lux @@ -10,6 +10,8 @@ text/format [product] [number] + (number ["r" ratio] + ["c" complex]) (coll [list "List/" Fold<List>] ["A" array] ["D" dict] @@ -17,8 +19,7 @@ ["S" set] ["ST" stack] ["V" vector])) - (math ["r" ratio] - ["c" complex]))) + )) ## [Exports] (type: #export #rec PRNG diff --git a/stdlib/source/lux/test.lux b/stdlib/source/lux/test.lux index d953b7d65..94a77d8cf 100644 --- a/stdlib/source/lux/test.lux +++ b/stdlib/source/lux/test.lux @@ -13,7 +13,7 @@ text/format [error #- fail "Error/" Monad<Error>]) [io #- run] - ["R" random])) + ["R" math/random])) ## [Host] (def: now |