Got Ads?
4/26/2007
  Teaching Kids to Program

If your kid wants to write their own side-scrolling shooter game, they probably need to learn to program.

My 9-yr old is learning to code using Phrogram (a revision of KPL - Kid's Programming Language), which is based on the Microsoft Visual Basic IDE model, and uses a simple BASIC-like procedural language that has sprites and intersection detection - so it's easy to do games.

Phrogram runs on top of .Net, so it's Windows-only, but it has a nice tutorial, and a ton of example programs. It's also free. Phrogram runs pretty slow, so you need a fast machine.

So far, we spend about 15 minutes a night going over loops, conditionals, and methods. Here's some sample code:


 For J = 1 To NumberOfSticks
   If I <> J Then
     If Sticks[I].Intersects(Sticks[J]) Then
       HasIntersections = True
       Break
     End If
   End If
 Next

You could be radical, and try and teach your son (or daughter) Ruby, Python, or JavaScript or ActionScript. Peter Norvig recommends "Alice" or "Squeak" for Kids. But I'm finding Phrogram / KPL to be just the right level for a nine year old.

BTW, Let me know if I'm missing something great out there - the modern day equivalent of "Bill Budge's Pinball Construction Kit" game...

Labels: ,

 




<< Home

Subscribe to GotAds?



Links



Recent Posts

Teaching Kids to Program


Archives

February 2005 /  March 2005 /  April 2005 /  May 2005 /  June 2005 /  July 2005 /  August 2005 /  September 2005 /  October 2005 /  November 2005 /  December 2005 /  January 2006 /  February 2006 /  March 2006 /  April 2006 /  May 2006 /  June 2006 /  July 2006 /  August 2006 /  September 2006 /  October 2006 /  November 2006 /  December 2006 /  January 2007 /  February 2007 /  March 2007 /  April 2007 /  May 2007 /  June 2007 /  July 2007 /  August 2007 /  September 2007 /  October 2007 /  November 2007 /  December 2007 /  January 2008 /  February 2008 /  March 2008 /  April 2008 /  May 2008 /  June 2008 /  July 2008 /  August 2008 /  September 2008 /  November 2008 /  December 2008 /  January 2009 /  March 2009 /