Hi i have this build
{ "build_systems": [ { "file_regex": "(.+[^:]):(\\d+):(\\d+): (?:fatal )?((?:error|warning): .+)$", "name": "mybuild", "shell_cmd": "gcc -Wall -O2 main.c -o myapp", "working_dir": "${project_path}" "selector": "source.x", } ], "folders": [ { "path": "." } ], "settings": { } }
when i build this
#include <stdio.h> int main(int argc, char const *argv[]) { printf("Hello\n"); getchar(); return 0; }
its appears
[Finished in 0.4s] but not the “hello”