Hello World!

In C, Java, Ruby, Python, JavaScript

Panos Matsinopoulos

--

Image by StockSnap from Pixabay

Back to basics, let’s write the popular Hello World! program in five very popular programming languages.

C

Use your favourite text editor to create a file with the following content.

#include <stdio.h>
int main() {
printf("Hello World!\n");
}

--

--