Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. strExample = strExample & "Lorem Ipsum"
  2.  
  3. Public strExample as String
  4.  
  5. Sub Main()
  6. {do something}
  7. AddTo("One")
  8. {do something else}
  9. AddTo("Two")
  10. End Sub
  11.  
  12. Sub AddTo(str as String)
  13. strExample = strExample & str
  14. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement