Skip to content

Instantly share code, notes, and snippets.

@kkosuge
Forked from STAR-ZERO/cat.rb
Created January 25, 2012 05:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkosuge/1674993 to your computer and use it in GitHub Desktop.
Save kkosuge/1674993 to your computer and use it in GitHub Desktop.
Ruby first
# coding: utf-8
class Cat
def initialize
@word = 'にゃんにゃん'
end
def nyan
puts @word
end
end
cat = Cat.new
cat.nyan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment