Implement negation operator.

This commit is contained in:
2023-08-20 22:35:07 -07:00
parent 90df76ca33
commit ccd10343c3
11 changed files with 42 additions and 2 deletions

View File

@ -19,7 +19,7 @@ main = { in
falseValue = false
invert = { value in
if value then false else true
!value
}
[