Programming Languages
This book attempts to present and explain computer programming fundamental concepts and paradigms. A number of popular, widespread computer programming languages exemplifies these concepts. Obviously, there are many computer programming languages and a more exhaustive list can be found here.
This section intends to present the classic "Hello World!" program in some of the most popular, widespread languages as a quick reference to see how they differ syntactically.
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}alert(“Hello World!”);print('Hello, World!')Last updated
Was this helpful?