Created
March 13, 2022 13:39
-
-
Save Deleplace/18fad2bbf4dcbc0f4ca04448939a761a 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