Skip to content

Instantly share code, notes, and snippets.

@scottswaaley
Created August 3, 2016 17:01
Show Gist options
  • Save scottswaaley/4b83a2670025c7cdbf211fb88ab4ad95 to your computer and use it in GitHub Desktop.
Save scottswaaley/4b83a2670025c7cdbf211fb88ab4ad95 to your computer and use it in GitHub Desktop.
if( age > 55) {
Serial.println("You are a Senior Citizen");
}
if( age >= 13 && age <= 19) {
Serial.println("You are a teenager");
}
if( age < 13 || age > 65 ) {
Serial.println("Your either too old or too young to be playing with an Arduino");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment