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
Copy file name to clipboardExpand all lines: docs/New Features/Break Statement.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
sidebar_position: 1
3
3
---
4
4
This keyword accepts an optional integral argument which tells it how many levels of enclosing loops it should break. The default value is 1, thus breaking out of the current loop.
5
-
```plutoshowLineNumbers title="Example 1"
5
+
```plutonorun title="Example 1"
6
6
for i = 1, 10 do -- Loop 1.
7
7
break 1 -- This is identical to `break` without any arguments.
0 commit comments