diff options
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/control/function.lux | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/stdlib/source/lux/control/function.lux b/stdlib/source/lux/control/function.lux index d9b8e36c5..855f585c9 100644 --- a/stdlib/source/lux/control/function.lux +++ b/stdlib/source/lux/control/function.lux @@ -6,9 +6,8 @@ (def: #export identity {#.doc (doc "Identity function." "Does nothing to its argument and just returns it." - (let [value "foo"] - (is? (identity value) - value)))} + (is? (identity value) + value))} (All [a] (-> a a)) (|>>)) |