Skip to content

Instantly share code, notes, and snippets.

@bhall2001
Last active October 12, 2016 22:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhall2001/d511d7cdffd5f00ed0dc3a0c4e012d88 to your computer and use it in GitHub Desktop.
Save bhall2001/d511d7cdffd5f00ed0dc3a0c4e012d88 to your computer and use it in GitHub Desktop.
Livecode function to pad spaces to left of string (VERY FAST)
function indentString pString, pPadding
if pPadding is empty then put 4 into pPadding
return format("%*s",pPadding,"") & pString
end indentString
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment