7 lines
174 B
Java
7 lines
174 B
Java
|
public class foo{
|
||
|
public static void main(String[] args){
|
||
|
String hello = "hello";
|
||
|
String world = "world";
|
||
|
String together = hello + world;
|
||
|
}
|
||
|
}
|