I\'ve seen a few posts discussing what a static variable is and I think I get it - but I\'d love to quickly write (or find) a program that utilizes both a regular and a stat
static works mostly like in C.
It can either initialize a variable only once.
Declaring a variable static in a file above @implementationblock will be available for the whole file only.
@implementation