Hello World!
I guess that every new software project has to start with "Hello Wold!"
In that sense... here are several flavours.
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
console.log("Hello, World!");
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
<?php
echo "Hello, World!";
?>