Data Types
Datatypes Datatype Description Examples Integer 64Bit int number 1, 100, 1000 String Text, multiple and single characters "John, Doe", "A", "!!!" Bool Booleans true, false Array Loosely typed list which contains any of the above type [1,2,3], [a,b,1,2] Hash Loosely typed Key Value Pair which contains any of the above type {“name”: “John Doe”, “age”: 100} Printing The println or print keyword prints all arguements to the standard outstream. Our current knowledge of esolang can be applied to create an Hello, World example.