Skip to content

Instantly share code, notes, and snippets.

@sgsinclair
sgsinclair / gist:3824440
Created October 3, 2012 01:43 — forked from jbfink/gist:3824267
unable to access array. need reader?
class Argh
@@array = %w[bob ted alice frank]
def get
@@array
end
end
puts Argh.new.get
@sgsinclair
sgsinclair / gist:3824291
Created October 3, 2012 00:59 — forked from jbfink/gist:3824267
unable to access array. need reader?
class Argh
def initialize
@array = %w[bob ted alice frank]
end
def get
@array
end
end
puts Argh.new.get
@sgsinclair
sgsinclair / gist:3824272
Created October 3, 2012 00:53 — forked from jbfink/gist:3824267
unable to access array. need reader?
class Argh
array = %w[bob ted alice frank]
def get
array.sample
end
end