You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (thing) {
if (otherThing) break^
print("hello")
}
print("world")
Where if thing == true and otherThing == false it will print "hello" and "world", but if thing == true and otherThing == true it will only print "world"