Skip to content

Instantly share code, notes, and snippets.

@elyosemite
Created February 4, 2017 11:54
Show Gist options
  • Select an option

  • Save elyosemite/08122f4a09c6ee2a39e1b94846eb7901 to your computer and use it in GitHub Desktop.

Select an option

Save elyosemite/08122f4a09c6ee2a39e1b94846eb7901 to your computer and use it in GitHub Desktop.
public class StringTeste {
public static void main(String[] args) {
String nome = "Yuri";
nome.concat(" Melo"); //Concatena String
System.out.println(nome);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment