Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
var attempts = 0 var success = false while (!success && attempts < 5) { attempts += 1 print("Checking... #\(attempts)") if (attempts == 3) { success = true print("Success!") } }