Skip to content

Instantly share code, notes, and snippets.

@microwaves
Created February 10, 2011 01:54
Show Gist options
  • Save microwaves/819773 to your computer and use it in GitHub Desktop.
Save microwaves/819773 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
a = ARGV[0]
i = 1
until i == 256
o = a + i.to_s
puts o
i += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment