Go to the first, previous, next, last section, table of contents.


makeString

Function: makeString { val len -> string }
file: job.t
package: muf
status: alpha

The makeString function accepts a length atop a character or integer value, and creates and returns a string of that length, with all slots initialized to that value.

Stack:
'a' 3 makeString
Stack: "aaa"
pop 90 3 makeString
Stack: "ZZZ"

See section ]print. See section ]join.


Go to the first, previous, next, last section, table of contents.