diff options
author | Eduardo Julian | 2017-11-09 14:19:54 -0400 |
---|---|---|
committer | Eduardo Julian | 2017-11-09 14:19:54 -0400 |
commit | 63624fd6b7f9f2563898655472025020483d398f (patch) | |
tree | 8c3f2f3db00203621c86c07699ade7011918705c /new-luxc/source/luxc/lang/analysis | |
parent | 0cb55507c100f6817225e644c2d19e73940edad6 (diff) |
- Fixed the tests.
- Fixed a few bugs.
- Can now translate recursion.
Diffstat (limited to '')
-rw-r--r-- | new-luxc/source/luxc/lang/analysis/procedure/common.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/new-luxc/source/luxc/lang/analysis/procedure/common.lux b/new-luxc/source/luxc/lang/analysis/procedure/common.lux index f3c296b2b..c8e3e3b38 100644 --- a/new-luxc/source/luxc/lang/analysis/procedure/common.lux +++ b/new-luxc/source/luxc/lang/analysis/procedure/common.lux @@ -277,7 +277,7 @@ (|> (dict;new text;Hash<Text>) (install "=" (binary Text Text Bool)) (install "<" (binary Text Text Bool)) - (install "prepend" (binary Text Text Text)) + (install "concat" (binary Text Text Text)) (install "index" (trinary Text Text Nat (type (Maybe Nat)))) (install "size" (unary Text Nat)) (install "hash" (unary Text Nat)) |