Guest User

Untitled

a guest
May 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. module Puppet::Parser::Functions
  2. newfunction(:combine_array, :type => :rvalue) do |args|
  3. arr = [""]
  4. args.each { |arg| arr += arg }
  5. return arr
  6. end
  7. end
Add Comment
Please, Sign In to add comment