mirror of
https://github.com/dschmenk/PLASMA.git
synced 2025-01-09 13:33:26 +00:00
Better inc/dec example
This commit is contained in:
parent
8e62b45c4a
commit
8820e8c5d4
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user