Why do I feel like certain languages have a higher minimum IQ than others? - /g/ (#105737285) [Archived: 811 hours ago]

Anonymous
6/28/2025, 10:33:23 PM No.105737285
1751138683556137
1751138683556137
md5: 8972f699160dc51b1f8869f28f102a18🔍
Javascript, Ruby, and PHP are languages I'm comfortable with but I can't wrap my head around Go.
Replies: >>105737407 >>105738107
Anonymous
6/28/2025, 10:44:42 PM No.105737407
>>105737285 (OP)
It's not about IQ, but simply that you got used to interpreted languages, which can literally just do anything, because it's all done at runtime. In compiled languages you have to make certain decisions at compile time (in practical terms, it means "when you write code" more or less). That means you can't just pass arguments of whatever types to a function or assign whatever type to a variable, because when program starts it allocates memory for particular types and not others. So basically, when you come from an interpreted language like Ruby, you begin fighting types. You can try Crystal first, because it's very similar to Ruby, but still forces you to think about compile time constraints.

With Go it's actually easy to start and just write something because it's very retarded and simple. It's a bit more difficult later when program gets larger, but there are ways to manage that.

My advice: just accept the retarded mascot as your lord for a while and just do whatever the language demands of you. Become retarded and you will see the light.
Anonymous
6/29/2025, 12:13:57 AM No.105737821
1675285380015044
1675285380015044
md5: c734d693d5fb5e4c6ffd48604978829e🔍
Anonymous
6/29/2025, 12:54:24 AM No.105738107
>>105737285 (OP)
So what exactly do you have problems with?