Difference between revisions of "Learning programming (1)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (→Requirements) |
Karl Jones (Talk | contribs) |
||
Line 9: | Line 9: | ||
* Knowledge of the computer, programming language, tools | * Knowledge of the computer, programming language, tools | ||
* Goals: what will the program do? | * Goals: what will the program do? | ||
+ | |||
+ | == Hello World == | ||
+ | |||
+ | Programmers traditionally write a [["Hello, World" program]] when learning a new programming language. | ||
+ | |||
+ | The program outputs "Hello World" or some other message. | ||
+ | |||
+ | This is among the simplest possible programs, making useful as a [[proof of concept]]. | ||
== See also == | == See also == |
Revision as of 07:56, 28 August 2015
This article introduces computer programming for the beginner.
Requirements
- Computer
- Programming language running on the computer
- Text editor or other tools for writing computer programs
- Compiler (for compiled programming languages)
- Knowledge of the computer, programming language, tools
- Goals: what will the program do?
Hello World
Programmers traditionally write a "Hello, World" program when learning a new programming language.
The program outputs "Hello World" or some other message.
This is among the simplest possible programs, making useful as a proof of concept.