@wallhackio our class did this and even at the time i felt like they should have just done C instead
@wallhackio it’s wild to go through a basic computer science class and still not be able to read a single file of C code because they never REALLY taught you how malloc() and friends worked
@Lady strange to use C++ then.
Also I am curious what language would you use to teach new programmers basic software concepts
@wallhackio i think basic software concepts should be taught in C, because there is no more basic software concept than “produce readable, maintainable code and do not shoot yourself in the foot”, and C is the easiest language in which to discern whether a student has learned these lessons
for anything more advanced than that, idk, probably Swift
@wallhackio (actually i think there’s an argument to teach basic programming concepts in POSIX sh instead, and would also consider this acceptable, but this is a more radical take)
@Lady @wallhackio POSIX shell sounds like it would be hard to teach because of all the nasty corners in it but this is otherwise a good take
@aescling @wallhackio name a nasty corner in POSIX shell
@Lady @wallhackio word splitting
@aescling @wallhackio hmmm
@aescling @wallhackio i’m not sure teaching “computers have to tokenize your code before they can read it” is a bad thing necessarily
@Lady @aescling @wallhackio i do think that shell commands spending so much of their time as strings before the computer does anything is bizarre and sets up weird expectations if you try to then go to another language
like i can't think of how exactly to phrase this but the old rm -rf $STEAM_DIR/*
bug that just wipes your drive when $STEAM_DIR
is empty, is like. i can think of ways that a similar kind of bug could come up in other languages but that feels like the result of a sharp corner to me
@monorail @Lady @wallhackio substitution would have been a much better answer though