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...
Comments
Post a Comment