Some interesting facts
An Example
JavaScript
"use strict" // This declares strict mode and using it is a good security practice.
console.log("Hello world!"); // semicolon is not mandatory but recommendedKotlin
fun main(args: Array<String>) {
println("Hello world!")
}Python
Ruby
Last updated