10 lines
148 B
Text
10 lines
148 B
Text
Public sub main()
|
|
DIM bestclub AS String
|
|
DIM myconcat AS String
|
|
|
|
bestclub = "Liverpool"
|
|
myconcat = bestclub & " Football Club"
|
|
|
|
Print myconcat
|
|
|
|
End
|