个人工具

“Wikipedia:沙盒”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(New page: <source lang="html"> 30 ... 31 </source>)
 
 
第1行: 第1行:
<source lang="html">
+
<source lang="java">
  30 ...
+
public class Test(){
  31
+
  public static  void main(String[] args){
 +
    System.out.println("hello!");
 +
}
 +
}
 
</source>
 
</source>

2007年5月9日 (三) 14:14的最新版本

public class Test(){
  public static  void main(String[] args){
    System.out.println("hello!");
 }
}