I want to add #multithreading in my custom language compiler.
When run it currently compiles all source files one-by-one, but I feel like I could run 3 threads and each can compile a third of the source files, similar to the "-j" argument in #make .
I don't want to deal with thread-related errors though ..





