In other languages, you would have to use includes or a build system to enumerate all files, compile them separately to object files, then link them into one final executable.

    The above will first compile your files into a single program (named after your folder/project), and then it will execute the program with --yourparam some_other_stuff passed to it as CLI parameters.

    NB: after a successful run, V will delete the generated executable. If you want to keep it, use instead, or just compile manually with v . .