Created
March 13, 2022 13:39
-
-
Save Deleplace/31fe60fec20aef046f07477b94ef3dfc to your computer and use it in GitHub Desktop.
Concatenate two strings
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
| void main() { | |
| var a = "Hello"; | |
| var b = " Universe"; | |
| var s = a + b; | |
| print(s); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment