Skip to content

Instantly share code, notes, and snippets.

@futureshocked
Created June 10, 2016 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save futureshocked/e0220d413fc0fb3f8d77f9ef4003da94 to your computer and use it in GitHub Desktop.
Save futureshocked/e0220d413fc0fb3f8d77f9ef4003da94 to your computer and use it in GitHub Desktop.
void setup(){
Serial.begin(9600);
}
void loop (){
a_function();
// Serial.print("In loop: ");
// Serial.println(local_variable); // local_variable is out of scope so compilation will produce an error message
delay(1000);
}
void a_function(){
static int local_variable = 0;
Serial.print("In a_function: ");
Serial.println(local_variable);
local_variable++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment