|
|
|
|
|
by simonh
3945 days ago
|
|
Before I reply, can I just say the fastcode site is one of the worst reading experience I've had in years. Truly appalling. For young kids, the problem with traditional languages is that you have to spend a huge amount of time dealing with syntactical issues like whitespace, nesting brackets, the right kinds of colons, singe/double quotes, etc, etc on any non-trivial program. I've taught my girls (10 and 11) a little Python, but kept it small scale largely because of this. On the other hand they can create pretty complex interactive animations in Scratch without having to deal with any of that, because they can focus their attention on the logic and the functionality of the commands. I suspect that once they get to 12 or 13 this will be less of an issue, and my eldest coped with the syntax issues better than her sister when writing a bit of Python, but when they first started learning Scratch at age 8 and 9 I think it would have been extremely challenging for them to use something like Python or BASIC. |
|
What is the equivalent of that today? For instance, is there an easy-to-use Python library that lets kids do simple drawing with ease?
Ie, on the TRS-80's Level II BASIC, just doing SET(X,Y) coloured a white pixel at that coordinate, and RESET(X,Y) turned it black. And you could see immediately the utility of applying FOR loops to make horizontal and vertical lines, etc.
I don't remember QBASIC, but the customized BASIC on my Tandy 1000 In the late 80's had graphics modes with I think PSET(X,Y,C) to light pixel with color C, and even had some built-in commands for making line, rectangles, circles, and ellipses.
So it was very easy to type a few lines and get something cool on the screen, but still required a bit of thought on x,y coordinages and some programming constructs to do anything complex.
I only dabble a bit in Python, but what's the best way to do something like that today?
I think there's much more of a feeling of "Wow, look what I made!" after drawing something this way than just using the painting mode for sprites in Scratch.