RosettaCodeData/Task/Binary-strings/VBA/binary-strings-7.vba

6 lines
126 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
Sub Append_to_string()
Dim A As String
A = "Hello worl"
Debug.Print A & Chr(100) 'return : Hello world
End Sub