Add example of `not` operator to lua.md (#2095)

This commit is contained in:
Sam Weaver 2024-03-29 03:55:22 -04:00 committed by GitHub
parent e067bd588d
commit 8e03519c2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

1
lua.md
View File

@ -198,6 +198,7 @@ layout: 2017/sheet
-- Logic (and/or)
nil and false --> nil
false and nil --> false
not true --> false
0 and 20 --> 20
10 and 20 --> 20