Anonymous
08/31/25(Sun)02:44:13 No.106440345 >>106440296
And my point is that the beginner semantics of almost all languages are the fucking same. Even JS is a more C adjacent choice actually so it should be preferred over python if you want to make the C adjacent arguments.
The only thing that changes between most high level languages is what import/include statement you have to make and how you declare the entrypoint into the code. Some like Java are excessively verbose while some like Python let you get right to it. But weighing all pros and cons -
#include<stdio.h>
int main()
{
puts("Hello World");
}
is nor fucking verbose at all. Python is not C adjacent and C is the better beginners language by the way of introducing them to essential concepts of computing early in a simplified, high level manner.
>When the beginner has a little pythn source file with a half dozen simple funcitons that he -actually- comprehends, it will be a lot easier for him to try out some C code because all the additional arcane syntax won't be a burden.
Nigga you're not making it easy for yourself here. C doesn't add anymore syntactic complexity than python does for half a dozen simple functions. The only thing different there is specifying the types, which is a good beginner exercise, simple enough that they can understand and no more and (I concede this one atleast) function ordering, which is admittedly distracting from basic concepts and only exists to make the compiler's job easier for the most part.