BicaVM/runtime/foo.java

7 lines
174 B
Java
Raw Permalink Normal View History

2011-11-10 23:14:01 +00:00
public class foo{
public static void main(String[] args){
String hello = "hello";
String world = "world";
String together = hello + world;
}
}