"Hello, world!"
sid
Posted on December 17, 2021
We've all been here before. When we start learning a language, the first thing we probably get taught to do is to output Hello, world!
to the console. For some, "Hello, world!" can turn into a new opportunity, a new career, a new life..
But where did it originate?
The origins of hello world are unclear, but the phrase was first seen in Brian Kernigham’s book in 1972, A Tutorial Introduction to the Language B. After that, it was used in The C Programming Language in 1978, which is what really made the phrase popular.
What it looks like in different languages today
Here is what "Hello, world!" looks like in some of the most popular programming languages today:
Javascript
console.log("Hello, world!")
Python
print("Hello, world!")
Swift
print("Hello, world!")
Ruby
puts "Hello, world!"
Shell
echo 'Hello, world!'
Java
class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, world!");
}
}
PHP
echo "Hello World!";
Go
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
C
#include <stdio.h>
int main() {
printf("Hello, World!");
return 0;
}
C++
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
C#
namespace HelloWorld
{
class Hello {
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}
Rust
fn main() {
println!("Hello World!");
}
Thanks for reading, and I hoped you enjoyed my post on "Hello, world!"
Posted on December 17, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.