mirror of
https://github.com/usatiuk/ficus.git
synced 2025-10-29 00:27:52 +01:00
10 lines
165 B
C++
10 lines
165 B
C++
#include "syscalls_interface.h"
|
|
|
|
void _start() {
|
|
while (true) {
|
|
putchar('h');
|
|
putchar('i');
|
|
putchar('\n');
|
|
sleep(100000);
|
|
}
|
|
} |