diff --git a/examples/core/core_os_execute.c b/examples/core/core_os_execute.c new file mode 100644 index 000000000..416d25294 --- /dev/null +++ b/examples/core/core_os_execute.c @@ -0,0 +1,16 @@ +// Written by Rabia Alhaffar in 12/June/2020 + +#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