Skip to content

Instantly share code, notes, and snippets.

@amrnt
Created January 14, 2011 15:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrnt/779736 to your computer and use it in GitHub Desktop.
Save amrnt/779736 to your computer and use it in GitHub Desktop.
# coding: utf-8
class Animal
def initialize(اسم)
@اسم = اسم
end
def اكتب_اسم_الحيوان
puts @اسم
end
end
بسه = Animal.new("Lucy")
بسه.اكتب_اسم_الحيوان
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment