yesterday I was doing some research and pulled up a web page that had code that looked something like this
Int var = 1
void setup
{
}
void loop
{
call (void action);
break;
}
void (action)
{
// do something
My internet crashed, and albe darned if i can find it again.
what i want to do is create something like a class in ruby. so in the loop I don't have to keep rewriting all the redundancy.