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! 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 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! 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 ...