Created
February 4, 2017 11:54
-
-
Save elyosemite/08122f4a09c6ee2a39e1b94846eb7901 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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