|
|
|
|
|
by rightbyte
1608 days ago
|
|
I think many programmers forget how it was to learn to program. Imagine the horror trying to make Rusts borrow checker happy without even understanding what an object scope or pointer is. C is a really good beginner's language, since any oop is explicit with function calls, kinda like Basic. No invisible destructors etc. Modern compilers even warns you on returning pointers to stack locals etc. I don't think Python is a good beginners language anymore with all its complexity. Maybe Go or Java. |
|
It's not like the simpler parts of the language have gone away in recent versions. You can still program in python like it's 2.7.
Just as you can still program in C++ using C paradigms.