Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 1e007a96761035f261351a68e7601417 > files > 518

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

#!/usr/bin/ruby
#
# does the perl variant count as oo?
#

class Foo
	attr_reader :i, :j

	def initialize()
		@i = 10
		@j = 20
	end
end

(1..100000).each{ o = Foo.new }
o = Foo.new
puts o.i