Skip to content

Commit

Permalink
Update AndOr.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatSageEqualToHeaven authored Mar 27, 2024
1 parent 73f84a1 commit 79c465b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Staging/AndOr.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local a = table.isfrozen({}) -- no propagate pls >:c
local b = math.floor(15)
local c = math.floor(25)
print(a and b)
print(a or c)
assert(not (a and b))
assert(a or c == 25)

OK()

0 comments on commit 79c465b

Please sign in to comment.