summaryrefslogtreecommitdiff
path: root/Base/home/anon/little/main.cpp
blob: 3cd4932ea5ea573e47647a3a513f9d82e375e417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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;
}