Skip to content

Instantly share code, notes, and snippets.

View alsotang's full-sized avatar

alsotang alsotang

View GitHub Profile
@alsotang
alsotang / 提问的智慧.md
Created August 6, 2016 04:51 — forked from zer4tul/提问的智慧.md
Simplified Chinese edition of "How To Ask Questions The Smart Way"
@alsotang
alsotang / 1.ruby
Created October 24, 2011 06:37 — forked from ohlol/gist:1308482
#In Ruby:
class Foo
attr_accessor :bar
end
f = Foo.new
f.bar = 'baz'
f.bar # => 'baz'