Arduino Funktion

void basic() {

}

int withReturn() {
	return 8;
}

void withInput(int i) {
	i = i++;
}
Real Reindeer