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