this post was submitted on 04 Nov 2025
472 points (99.2% liked)

Programmer Humor

27248 readers
1203 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] scrion@lemmy.world 4 points 5 days ago (1 children)

They are launched sequentially, but run simultaneously, yes - at least some of them. And they run concurrently but not in parallel - using a single execution context, there is only a single thread, so no parallelism exist.

[โ€“] ptu@sopuli.xyz 1 points 5 days ago

I see, I was only aware of sleep but that makes sense. Thanks for your insight.