Skip to content

Instantly share code, notes, and snippets.

@semihozkoroglu
Created December 26, 2010 23:01
Show Gist options
  • Save semihozkoroglu/755706 to your computer and use it in GitHub Desktop.
Save semihozkoroglu/755706 to your computer and use it in GitHub Desktop.
#!/usr/bin/ruby
class A
def initialize(x)
self.x = x #self ile x methoduna gönderiyoruz
end
def x=(x)
x[0] = x[0].chr.capitalize #x[0] ifadesi asci dönmekte ve bunu chr ile karaktere ,capitalize ile upper yapmaktayız.
@x = x
end
def x
@x
end
end
yeni = A.new "semih"
puts yeni.x
~
~
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment