Difference between revisions of "Learning programming (1)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
 
(3 intermediate revisions by one other user not shown)
Line 8: Line 8:
 
* [[Compiler]] (for compiled programming languages)
 
* [[Compiler]] (for compiled programming languages)
 
* Knowledge of the computer, programming language, tools
 
* Knowledge of the computer, programming language, tools
 +
* Knowledge of the [[software development process]] is helpful
 
* Goals:  what will the program do?
 
* Goals:  what will the program do?
  
Line 24: Line 25:
 
* [["Hello, World!" program]]
 
* [["Hello, World!" program]]
 
* [[Programming language]]
 
* [[Programming language]]
 +
* [[Software development process]]
 
* [[Source code]]
 
* [[Source code]]
 +
 +
 +
[[Category:Computer programming]]
 +
[[Category:Learning]]

Latest revision as of 03:44, 25 April 2016

This article introduces computer programming for the beginner.

Requirements

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