Help:Contents
From REALbasicWiki
Technical advice on contributing to this Wiki are available at Help:Editing
and at
http://en.wikipedia.org/wiki/Wikipedia:Cheatsheet
Contents |
[edit] Adding new pages
See here for adding a new page to this wiki.
[edit] Code Formatting
REALbasic code formatting is supported by enclosing the text in <rbcode> and </rbcode> tags. This is how it will look like:
Function Append(extends s() as String, t() as String)
for i as Integer = 0 to UBound(t)
s.Append t(i)
next
End Function
