Skip to content

Instantly share code, notes, and snippets.

@sgsinclair
Forked from jbfink/gist:3824267
Created October 3, 2012 00:59
Show Gist options
  • Save sgsinclair/3824291 to your computer and use it in GitHub Desktop.
Save sgsinclair/3824291 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment