DEV Community

Discussion on: Ruby's GIL in a nutshell

Collapse
 
tomlobato profile image
Antonio Alberto Lobato • Edited

Of course, the main thread is a... thread, but how that matters for the issue?
Any line of code that runs synchronously forces the next line to wait. So, we need a Thread.new, just to let the interpreter to reach the next line while the first one is running.