Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/String-concatenation/VBA/string-concatenation.vba
Normal file
11
Task/String-concatenation/VBA/string-concatenation.vba
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
Option Explicit
|
||||
|
||||
Sub String_Concatenation()
|
||||
Dim str1 As String, str2 As String
|
||||
|
||||
str1 = "Rosetta"
|
||||
Debug.Print str1
|
||||
Debug.Print str1 & " code!"
|
||||
str2 = str1 & " code..."
|
||||
Debug.Print str2 & " based on concatenation of : " & str1 & " and code..."
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue