Files
pebble/examples/16_break.peb
T
2026-02-06 15:51:23 +01:00

6 lines
64 B
Plaintext

for i to 10 {
if i == 5 {
break
}
print(i)
}