From 1a9bbb6159c34df3029c0d55944094afcc91b760 Mon Sep 17 00:00:00 2001 From: caminsha Date: Thu, 27 Feb 2020 23:10:20 +0100 Subject: [PATCH] added semicolon at the end of the line --- processing.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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