Skip to main content

Hello World in 30 Programming Languages (Part 3)

How many programming languages do you think you know? Think a lot?
Let's Check that out...

This post is the third part of a bigger series, if you haven't read the first part, do so here, and for the second part, go here.

21. QBASIC: Quick with the basics this time!

Logo of The QB64 BASIC Compiler for QBASIC
The QB64 BASIC Compiler for QBASIC
Developed by: Microsoft
Developed in: 1931
HelloWorld.bas
CLS PRINT "Hello World!" END REM ?"Hello World!" is also equivalent

22. Scala: Do more with less code

Logo of The Scala Programming Language
Scala
Developed by: Martin Odersky and Programming Methods Laboratory of École Polytechnique Fédérale de Lausanne
Developed in: 20 January, 2004
HelloWorld.sc
object HelloWorld extends App{ println("Hello World!") }

23. Go: Let's go, straight into it!

Logo of The Go Programming Language
Go
Developed by: Robert Griesemer, Rob Pike, Ken Thompson and The Go Authors
Developed in: 10 November, 2009
HelloWorld.go
package main import "fmt" func main(){ fmt.Println("Hello World!") }

24. Swift: Swifter than you'd think

Logo of The Swift Programming Language
Swift
Developed by: Chris Lattner, Apple Inc. and Open-source contributors
Developed in: 2 June, 2014
HelloWorld.swift
print("Hello World!")

25. Elixir: The elixir of programming!

Logo of The Elixir Programming Language
Elixir
Developed by: José Valim
Developed in: 2012
HelloWorld.ex
IO.puts("Hello World!")

26. Erlang: Let it crash

Logo of The Erlang Programming Language
Erlang
Developed by: Joe Armstrong, Robert Virding, Mike Williams and Erricson
Developed in: 1986
HelloWorld.erl
-module(helloworld). -export([start/0]). start()-> io:fwrite("Hello World!\n").

27. Julia: Looks like Python, feels like Lisp, runs like Fortran

Logo of The Julia Programming Language
Julia
Developed by: Jeff Bezanson, Alan Edelman, Stefan Karpinski, Viral B. Shah and other contributers
Developed in: 2012
HelloWorld.jl
println("Hello World!")

28. Visual Basic.NET: Basic Visuals for coding

Logo of The Visual Basic.NET Programming Language
Visual Basic.NET(VB.NET)
Developed by: Microsoft
Developed in: 2001
HelloWorld.vb
Module Module1 Sub Main() Console.WriteLine("Hello World!") End Sub End Module

29. Haskell: Avoid 'success at all costs'

Logo of The Haskell Programming Language
Haskell
Developed by: Lennart Augustsson, Paul Hudac, John Hughes, Simon Peyton Jones, John Launchbury, Erik Meijer, Philip Wadler and others contributers
Developed in: 1990
HelloWorld.hs
module Main(main) where main::IO() main = putStrLn "Hello World!"

30. PHP: Your web backend friend

Logo of The PHP Programming Language
PHP
Developed by: Rasmus Lerdorf, The PHP Development Team and Zend Technologies
Developed in: 8 June 1995

 
HelloWorld.php
<!DOCTYPE HTML> <HTML> <HEAD> <TITLE>PHP Hello World Example</TITLE> </HEAD> <BODY> <?php echo '<P>Hello World!</P>'; ?> </BODY> </HTML>

Bonus:

Fortran: Formulaic Translation

Logo of The Fortran Programming Language
Fortran
Developed by: John Backus and IBM
Developed in: 1957
HelloWorld.for
program helloworld print *, "Hello World!" end program helloworld

< Part 2


And with this, we complete this series of "Hello World!" in 30+ different Programming Languages, what do you think about, which did you like the most, which one are you going to learn the first, just drop your opinions in the comments below.

And see you guys in my next post. Buh-bye!

Comments

Popular posts from this blog

3 best Minecraft-like free games for Android

Building and Crafting Games have been on a lot of people's favourites list, since the earliest days of gaming, from Minetest to Microsoft's Minecraft in it's various editions. But a lot of people don't have the opportunity to play Minecraft, majorly due to being unable to buy it. So, today I've got for you one of the few best minecraft-like games for you to enjoy on your own Android phones. 1. LokiCraft This game on the Play Store is available to freely download and play. Though it doesn't feature a multiplayer mode, the offline single player gameplay isn't bad. This game packs a lot to be discovered. Download Link: https://play.google.com/store/apps/details?id=com.ua.building.Lokicraft It has another version, Lokicraft 2. Download Link of 2nd Version: https://play.google.com/store/apps/details?id=com.ua.magicgames.artstudio.lokicraft2 But just beware of any other games that have similar names, like Lokicraft 3 or Lokicraft New Crafting Game, etc, etc. 2. Mu...

Hello World in 30 Programming Languages (Part 2)

How many programming languages do you think you know? Think a lot? Let's Check that out... This post is the second part of a bigger series, if you haven't read the first part, do so here . 11. BASIC: Let's begin with the basics Developed by: John G. Kemeny and Thomas E. Kurtz Developed in: May1, 1964 HelloWorld.bas CLS PRINT "Hello World!" END 12. Java: Just have a sip! Java Developed by: James Gosling and Oracle Corp. Developed in:  May 23, 1995 HelloWorld.java public class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); } } 13. GDScript: Go, go Godot! GDScript Developed by: Juan Linietsky and Ariel Manzur Developed in:  14 January, 2014 HelloWorld.gd extends Node2D func _ready (): print ( "Hello World!" ) 14. Lua: Powerful, fast, lightweight, embeddable scripting language Lua Developed by: Roberto ierusalimschy, Waldemar Celes and Luiz Henrique de Figueiredo Develope...

Bhailang - The language by and for Indian bros!

 Hi folks! If you ever get bored of the same, everyday, hard-coded keyword coding style, take a look here - - a toy language created by two Indian 'bros' - Aniket Singh from Amazon and Rishabh Tripathi from Groww. The language combines "Bhai", a word in Hindi for 'brother' and "lang", short for 'Language', popular in the coding culture, to derive it's name. The developers said "Bhailang" came up as idea from an insider joke. Syntax It is written in TypeScript, and has it's own well-defined syntax, but every statement contains the word 'bhai'. The programs of bhailang begin with a "hi bhai" statement and end with "bye bhai". Bhailang (Source: bhailang.js.org) Keywords Bhailang uses keyword in Hindi language for it's purpose of programming. Numbers and strings are used and created like other languages. While, Boolean values of True and False are represented by "sahi" and "galat...