13 lines
202 B
C++
13 lines
202 B
C++
#pragma once
|
|
|
|
extern void setup();
|
|
extern void loop();
|
|
|
|
int main() {
|
|
// Super simple main function that just calls the setup and loop functions.
|
|
setup();
|
|
while (1) {
|
|
loop();
|
|
}
|
|
}
|