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!
Developed in: 1931
HelloWorld.basCLS PRINT "Hello World!" END REM ?"Hello World!" is also equivalent
22. Scala: Do more with less code
![]() |
Scala |
Developed in: 20 January, 2004
HelloWorld.scobject HelloWorld extends App{ println("Hello World!") }
23. Go: Let's go, straight into it!
Developed in: 10 November, 2009
HelloWorld.gopackage main import "fmt" func main(){ fmt.Println("Hello World!") }
24. Swift: Swifter than you'd think
Developed in: 2 June, 2014
HelloWorld.swiftprint("Hello World!")
25. Elixir: The elixir of programming!
Developed in: 2012
HelloWorld.exIO.puts("Hello World!")
26. Erlang: Let it crash
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
![]() |
Julia |
Developed in: 2012
HelloWorld.jlprintln("Hello World!")
28. Visual Basic.NET: Basic Visuals for coding
Developed in: 2001
HelloWorld.vbModule Module1 Sub Main() Console.WriteLine("Hello World!") End Sub End Module
29. Haskell: Avoid 'success at all costs'
![]() |
Haskell |
Developed in: 1990
HelloWorld.hsmodule Main(main) where main::IO() main = putStrLn "Hello World!"
30. PHP: Your web backend friend
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
Developed in: 1957
HelloWorld.forprogram 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
Post a Comment