Skip to content

Instantly share code, notes, and snippets.

@dangnhdev
Created February 7, 2016 04:41
Show Gist options
  • Save dangnhdev/5c8ee8a357d92880fac1 to your computer and use it in GitHub Desktop.
Save dangnhdev/5c8ee8a357d92880fac1 to your computer and use it in GitHub Desktop.
/**
*
* @author NguyenHaiDang@ActiveStudy
*/
public class StringJoinerExample {
public static void main(String[] args) {
String s1 = "Hello";
String s2 = "World";
String s = s1 + s2; //it works!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment