forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Entab
angerangel edited this page Mar 19, 2013
·
2 revisions
ENTAB string /size number
Converts spaces to tabs (default tab size is 4).
ENTAB is a native value.
- string -- (modified) (any-string!)
-
/size -- Specifies the number of spaces per tab
- number (integer!)
#SOURCE
entab: make native! [ [
"Converts spaces to tabs (default tab size is 4)."
string [any-string!] "(modified)"
/size "Specifies the number of spaces per tab"
number [integer!]
] ]