Skip to main content

Posts

Showing posts from February, 2022

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

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