BicaVM/runtime/foo.java
2011-11-10 23:14:01 +00:00

7 lines
174 B
Java

public class foo{
public static void main(String[] args){
String hello = "hello";
String world = "world";
String together = hello + world;
}
}