Difference between revisions of "languages for learning programming"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
(resources - quitebasic; reorg)
Line 18: Line 18:
 
==Languages for Kids==
 
==Languages for Kids==
 
* [http://www.alice.org/ Alice]
 
* [http://www.alice.org/ Alice]
 +
* [http://kidbasic.sourceforge.net/ BASIC-256] (formerly KidBASIC), also inspired by "Why Johnny Can't Code"
 
* [http://el.media.mit.edu/Logo-foundation/ Logo]
 
* [http://el.media.mit.edu/Logo-foundation/ Logo]
 
** references: [http://www.tedfelix.com/cs4kids/ CS for Kids]
 
** references: [http://www.tedfelix.com/cs4kids/ CS for Kids]
Line 28: Line 29:
 
* [http://www.squeak.org/ Squeak Smalltalk]
 
* [http://www.squeak.org/ Squeak Smalltalk]
 
** references: [http://www.squeakland.org/ Squeakland] | [http://www.ofset.org/freeduc-cd FreeDuc LiveCD with Squeak]
 
** references: [http://www.squeakland.org/ Squeakland] | [http://www.ofset.org/freeduc-cd FreeDuc LiveCD with Squeak]
 +
 
==Links==
 
==Links==
 
* '''2003-10-14''' [http://weblogs.java.net/blog/joshy/archive/2003/10/how_do_kids_pro.html Teaching Kids to Program] by [[Joshua Marin]]
 
* '''2003-10-14''' [http://weblogs.java.net/blog/joshy/archive/2003/10/how_do_kids_pro.html Teaching Kids to Program] by [[Joshua Marin]]

Revision as of 23:36, 20 November 2006

navbar

computing: software: programming: languages: for learning

Overview

There is a need for a programming language and environment that is suitable for teaching beginners – including children – to program.

Some key features:

  • (Ideally) Available pre-installed on all popular OSs; next-best would be availability for free on the internet, in versions pre-compiled for all popular OSs
  • BASIC-like in certain ways:
    • must have an "interactive" mode, where you type a line and the computer immediately executes your instructions
    • must have simple graphics ability readily available (where "readily" can be defined as "you can plot a pixel in a single line of code, where lines which include external libraries count as additional lines of code")
    • simple, non-picky syntax (syntax error messages should be informative and on-target, to reduce the learning curve)

This need has been brought up in different contexts and discussed a fair amount; for now, I'm just going to post some links. --Woozle 21:27, 14 September 2006 (EDT)

See also Wikipedia's Educational Programming Languages page, which has a few more choices than mentioned below.

Resources

Languages for Kids

Links