mirror of
https://github.com/dschmenk/PLASMA.git
synced 2026-04-21 07:17:03 +00:00
Better inc/dec example
This commit is contained in:
+5
-4
@@ -521,10 +521,11 @@ PLASMA has an increment and decrement statement. This is different than the incr
|
||||
```
|
||||
byte i
|
||||
|
||||
i = 0
|
||||
while i < 100
|
||||
i++
|
||||
loop
|
||||
i = 4
|
||||
i++ // increment i by 1
|
||||
puti(i) // print 5
|
||||
i-- // decrement i by 1
|
||||
puti(i) // print 4
|
||||
```
|
||||
|
||||
#### Control Flow
|
||||
|
||||
Reference in New Issue
Block a user