NAME
Prepend — Modify string to add value to the front of it.
SYNOPSIS
Prepend StringVarName Value
DESCRIPTION
Return Value
New contents of the string.
Arguments
StringVarNameName of string variable to modify.
ValueValue to prepend to the front of the string variable contents.
More Info
Works like append except value is put at the front.

Note also that, like append, this will not generate an error if the variable does not exist, but rather will create a new variable.


For information regarding exceptions / errors, see here.
EXAMPLES
% set MyString World
World
% Prepend MyString "Hello "
Hello World
SEE ALSO
append
KEYWORDS
modify, string