1 2 3 4 5 6
module Puppet::Parser::Functions newfunction(:strlength, :type => :rvalue) do |args| args[0].to_s.length end end