Build Systems are written in JSON, and have the file extension .sublime-build.
Build Systems are output-only, meaning it is not possible to execute some code that will request user input using the build system. The code will just block waiting for input forever. To work around this, many pe...