Skip to content

Instantly share code, notes, and snippets.

@hota1024
Created September 6, 2017 14:43
Show Gist options
  • Save hota1024/4dc6d064d4153e0fa676762853d2f413 to your computer and use it in GitHub Desktop.
Save hota1024/4dc6d064d4153e0fa676762853d2f413 to your computer and use it in GitHub Desktop.
hello world

僕の知っている限りのhello worldプログラムです。

#inclulde <stdio.h>
int main(void){
printf("hello world");
return 0;
}
#include <iostream>
using namespace std;
int main(){
cout << "hello world";
}
class Main{
public static void main(String[] args){
System.out.println("hello world");
}
}
document.write("hello world");
echo "hello world";
print("hello world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment