Skip to content

Instantly share code, notes, and snippets.

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

  • Save elyosemite/332522595c371c18e1ed922b3107e004 to your computer and use it in GitHub Desktop.

Select an option

Save elyosemite/332522595c371c18e1ed922b3107e004 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