Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 17, 2021 02:24 pm GMT

"Hello, world!"

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 Kernighams 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 mainimport "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!"

Check out my Website | Twitter | Github


Original Link: https://dev.to/sidcraftscode/hello-world-2cd4

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To