This is my first post, and it always will be. I just wanted to say hello, have a nice day!

puts "Hello world!"
<?= "Hello world!"; ?>
alert("Hello world!");
fun main(args : Array<String>) {
    println("Hello world!")
}
class HelloWorld {
    public static void main(String args[]) {
       System.out.println("Hello World!");
    }
}