Sophie

Sophie

distrib > Fedora > 15 > x86_64 > by-pkgid > 1e007a96761035f261351a68e7601417 > files > 570

parrot-docs-3.6.0-2.fc15.noarch.rpm

#!/usr/bin/ruby

big = 0
string = "just another ruby hacker"

100000.times {
	big += 1
	str = string.split(//)
	f = str.shift
	str.push f
	string = str.join('')
}

puts big, string