mirror of
https://github.com/RGBCube/serenity
synced 2025-06-25 02:52:08 +00:00
12 lines
224 B
C++
12 lines
224 B
C++
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
|
|
int main(int, char**)
|
|
{
|
|
for (int i = 0; i < 3; ++i) {
|
|
// This is a comment :^)
|
|
printf("Hello friends!\n");
|
|
mkdir("/tmp/xyz", 0755);
|
|
}
|
|
return 0;
|
|
}
|