Skip to content

Instantly share code, notes, and snippets.

@ozero
Created July 24, 2012 03:03
Show Gist options
  • Save ozero/3167776 to your computer and use it in GitHub Desktop.
Save ozero/3167776 to your computer and use it in GitHub Desktop.
java helloworld sample on windows
public class Myclass {
public static void main(final String[] args){
System.out.println("hello");
}
}
/*
準備:
ディレクトリ
c:\opt\jt
を作成して、この文書を
Myclass.javaとして保存。
コンパイル:
C:\opt\jt>javac Myclass.java
結果:
C:\opt\jt>java -classpath C:\opt\jt Myclass
hello
こういうことでいいんだよね(;´Д`)?
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment