Hello World
java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
go
func main() {
fmt.Println("hello world")
}
func main() {
fmt.Println("hello world")
}
js
console.log("hello world")
console.log("hello world")