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. KurtzDeveloped in: May1, 1964
HelloWorld.basCLS PRINT "Hello World!" END
12. Java: Just have a sip!
![]() |
Java |
Developed by: James Gosling and Oracle Corp.
Developed in: May 23, 1995
Developed in: May 23, 1995
HelloWorld.javapublic class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); } }
13. GDScript: Go, go Godot!
Developed in: 14 January, 2014
HelloWorld.gdextends Node2D func _ready(): print("Hello World!")
14. Lua: Powerful, fast, lightweight, embeddable scripting language
Developed by: Roberto ierusalimschy, Waldemar Celes and Luiz Henrique de Figueiredo
Developed in: 1993
Developed in: 1993
HelloWorld.luaprint("Hello World!") --print "Hello World!" --is also equivalent
15. Pascal: In the honor of Blaise Pascal
Developed by: Niklaus Wirth
Developed in: 1970
HelloWorld.pasprogram HelloWorld(output); begin writeln("Hello World!"); end.
16. Python: Beware, or proceed if you dare
Developed by: Guido van Rossum and PSF(Python Software Foundation)
Developed in: 20 February, 1991
HelloWorld.pyprint("Hello World!")
17. Rust: Empowering everyone to write better code
Developed by: Graydon Hoare and The Rust Foundation
Developed in: July 7, 2010
Developed in: July 7, 2010
HelloWorld.rsfn main(){ println!("Hello World!"); }
18. Perl: There's more than one way to do it
Developed in: February 1, 1988
HelloWorld.plprint "Hello World!\n";
19. R: For statistical computing
Developed in: August 1993
HelloWorld.rprint("Hello World!", quote=FALSE)
20. Ruby: Got one? Time to show off!
Developed in: 1995
HelloWorld.rbprint("Hello World!") #puts "Hello World!" #is also equivalent
Comments
Post a Comment