Skip to content

Instantly share code, notes, and snippets.

@jespr
Created February 2, 2015 22:27
Show Gist options
  • Save jespr/ec220c41ff84ae30530e to your computer and use it in GitHub Desktop.
Save jespr/ec220c41ff84ae30530e to your computer and use it in GitHub Desktop.
Spaces
# Usage: ruby spaces.rb haha 2
# => "h a h a"
input, spaces = ARGV[0], ARGV[1]
output = ""
input.split('').each do |char|
output << char
output << " " * spaces.to_i
end
puts output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment