module Eggshell::Bundles::Basics::StdFunctions

Baseline functions. @todo catch exceptions???

Constants

FUNC_NAMES

Public Class Methods

str_repeat(str, amt) click to toggle source

Repeats `str` by a given `amt`

# File lib/eggshell/bundles/basics-old.rb, line 842
def self.str_repeat(str, amt)
        return str * amt
end