summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcaminsha <c.96marco@hotmail.com>2020-02-27 23:10:20 +0100
committercaminsha <c.96marco@hotmail.com>2020-02-27 23:10:20 +0100
commit1a9bbb6159c34df3029c0d55944094afcc91b760 (patch)
tree43bbd3d30de7299fc50d5a95594a0b927761b1d0
parent11362faa3c3d55ed6e97dd07fbf84db1d427c3a4 (diff)
added semicolon at the end of the line
-rw-r--r--processing.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/processing.html.markdown b/processing.html.markdown
index d99912e7..cf2dd77d 100644
--- a/processing.html.markdown
+++ b/processing.html.markdown
@@ -150,7 +150,7 @@ SomeRandomClass myObjectInstantiated = new SomeRandomClass();
// operations.
float f = sq(3); // f = 9.0
float p = pow(3, 3); // p = 27.0
-int a = abs(-13) // a = 13
+int a = abs(-13); // a = 13
int r1 = round(3.1); // r1 = 3
int r2 = round(3.7); // r2 = 4
float sr = sqrt(25); // sr = 5.0