Created
February 25, 2019 10:11
-
-
Save Erinziyi/fb1b475925f70b571c2e8868d9b91745 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
| main() { | |
| String first = 'erin'; | |
| String second = "This is erin"; | |
| int x = 45; | |
| int y = 21; | |
| String newString = '$first $second $x $y'; | |
| print(newString); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment