Fix spacing in builtins file

This commit is contained in:
Nicolas Abril 2024-08-07 17:24:30 +02:00 committed by GitHub
parent 5ad9c72b7f
commit 63ba5d2275
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -122,6 +122,7 @@ def Tree/reverse(tree):
return !tree.value
case Tree/Node:
return ![tree.right, tree.left]
# MAP Impl
type Map = (Node value ~left ~right) | (Leaf)