6 lines
92 B
Text
6 lines
92 B
Text
Function StringPrepend()
|
|
Dim s As String
|
|
s = "bar"
|
|
s = "foo" & s
|
|
Debug.Print s
|
|
End Function
|