From 7b3f1218be3e333c955e867ceed4652eadbaffd1 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 18 Nov 2019 19:01:50 +0100 Subject: [PATCH] little: Make this build by default, and add some curlies --- Base/home/anon/little/main.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Base/home/anon/little/main.cpp b/Base/home/anon/little/main.cpp index 87912293ca..3cd4932ea5 100644 --- a/Base/home/anon/little/main.cpp +++ b/Base/home/anon/little/main.cpp @@ -1,9 +1,12 @@ #include +#include int main(int, char**) { - // This is a comment :^) - printf("Hello friends!\n"); - mkdir("/tmp/xyz", 0755); + for (int i = 0; i < 3; ++i) { + // This is a comment :^) + printf("Hello friends!\n"); + mkdir("/tmp/xyz", 0755); + } return 0; }