Ruby Examples
This commit is contained in:
19
level7/64.rb
Executable file
19
level7/64.rb
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/ruby
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
=begin
|
||||
접근자(attr_accessor) 사용
|
||||
=end
|
||||
|
||||
class Person
|
||||
attr_accessor :name, :age
|
||||
|
||||
def initialize(name, age)
|
||||
@name = name
|
||||
@age = age
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
charlie = Person.new("Charlie", 13)
|
||||
puts charlie.hello
|
||||
Reference in New Issue
Block a user