Hello World!

1
2
3
4
5
6
#include<stdio.h>

int main(){
printf("hello world\n");
return 0;
}
1
2
3
4
5
6
#include<iostream>

int main(){
std::cout << "hello world! << std::endl;
return 0;
}
1
2
3
#!/usr/bin/python3

print("Hello, World!")
1
2
3
4
5
6
7
package main

import "fmt"

func main() {
fmt.Println("Hello, World!")
}
1
2
3
4
5
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<body>

<?php
echo "Hello World!";
?>

</body>
</html>