Skip to content

Commit

Permalink
Update BasicJump.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGreatSageEqualToHeaven authored Mar 27, 2024
1 parent d77be90 commit 5af33f9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/Staging/BasicJump.lua
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
local a = 1
while a ~= 5 do
if a == 3 then
a += 2
print("breaking")
a += 20
break
end
a = a + 1
end
print("jumped")
assert(a == 23)

OK()

0 comments on commit 5af33f9

Please sign in to comment.