View Single Post
Join Date: Jul 2004
Posts: 494
Reputation: Puckdropper is an unknown quantity at this point 
Solved Threads: 21
Puckdropper Puckdropper is offline Offline
Posting Pro in Training

Re: I want to get started learning a programming language

 
0
  #8
Jul 9th, 2004
Personally, I'd recommend starting with BASIC (some dialect of it. There's literally 100's!) because it's one of the most common language bases. (You know those TI-graphing calculators? Took me 30 minutes to learn to program them because of my strong BASIC upbringing.)

From BASIC, I'd consider Ada95. While it's not as simple as Basic, it is an excellent language to learn how to code from. If you write good code in Ada, you almost don't need comments to know what's going on. (That being said, it's a very "wordy" language.) Both BASIC and Ada are easy to learn how to use, but Ada requires more guidance than BASIC does.

Example "Hello World" program in Ada95. (If you were to compile it, it would work.)

with Ada.Text_IO;

procedure hello is
  begin
     Ada.Text_IO.put("Hello World!");
  end hello;

Can you tell what's going on, even without comments?
www.uncreativelabs.net

Old computers are getting to be a lost art. Here at Uncreative Labs, we still enjoy using the old computers. Sometimes we want to see how far a particular system can go, other times we use a stock system to remind ourselves of what we once had.
Reply With Quote