Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ void loop(){
}

void thisFunction() {
x = x++; //increase x by 1 each time function is run.
x++; //increase x by 1 each time function is run.
}
```

Expand Down Expand Up @@ -844,8 +844,8 @@ Here are some examples:
x = 5;
y = 2;

xx++; //increase by one, so x is now 6
xx--; //decrease by one, so x is now 4
x++; //increase by one, so x is now 6
x--; //decrease by one, so x is now 4

x += y; //x is now 7 (add and assign)
x -= y; //x is now 3 (subtract and assign)
Expand Down