Here is some code I am playing with, but it keeps giving me an error 'Syntax error - missin operator, semicolon or"}" near 2
void setup() {
size(200, 200);
}
void sum(int a, int b, int c) {
int total = a + b + c;
println(total);
}
sum(2, 3, 5);