mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-07 02:02:19 +00:00
14 lines
108 B
C++
14 lines
108 B
C++
#include <WProgram.h>
|
|
|
|
int main(void)
|
|
{
|
|
init();
|
|
|
|
setup();
|
|
|
|
for (;;)
|
|
loop();
|
|
|
|
return 0;
|
|
}
|
|
|