mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-07 02:02:19 +00:00
12 lines
85 B
C++
12 lines
85 B
C++
int main(void)
|
|
{
|
|
init();
|
|
|
|
setup();
|
|
|
|
for (;;)
|
|
loop();
|
|
|
|
return 0;
|
|
}
|
|
|