From c9616a63cfeae633a02f7eb7cb060803878d0728 Mon Sep 17 00:00:00 2001 From: Rabia Alhaffar Date: Fri, 12 Jun 2020 20:55:33 +0300 Subject: [PATCH] Delete core_os_execute.c --- src/core_os_execute.c | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/core_os_execute.c diff --git a/src/core_os_execute.c b/src/core_os_execute.c deleted file mode 100644 index faa73c5fb..000000000 --- a/src/core_os_execute.c +++ /dev/null @@ -1,14 +0,0 @@ -#include - -int main(void) { - InitWindow(0,0,"Execute"); - Execute("mkdir made_with_example"); - while(!WindowShouldClose()) { - BeginDrawing(); - ClearBackground(RAYWHITE); - DrawText("Command executed successfully!!!",10,10,32,BLACK); - EndDrawing(); - } - CloseWindow(); - return 0; -} \ No newline at end of file