Jump to content

Hello world program

From Simple English Wikipedia, the free encyclopedia
Revision as of 07:34, 25 November 2020 by 77.23.145.165 (talk) (Hello Word in Python added)

A Hello world program is usually a program made by computer programmers that are new to a programming languages, or to test if the compiler for this language is working correctly. It will simply put the text Hello, World! on the screen. One way to do the Hello World program is shown below, in the C programming language.


Hello World in Python

print("Hello World")

Other website