6 lines
100 B
Text
6 lines
100 B
Text
Sub String_Clone_Copy()
|
|
Dim A As String, B$
|
|
A = "Hello world!"
|
|
'cloning :
|
|
B = A
|
|
End Sub
|