======Synopsis:====== $__repeat__( ) * This function returns instances of joined without a separator. * must be >= 1 * The return string is truncated to 1MB to avoid shooting yourself in the foot. * The must NOT be surrounded by double quotes. If you need to repeat the space, use $__repeat__() ======Returns:====== input string repeated count times ======Examples:====== $repeat(5 hello) returns "hellohellohellohellohello" $repeat(5 ) returns " " (spaces)