Ruby Examples

This commit is contained in:
2026-01-15 14:01:21 +09:00
commit cf3d7d3296
76 changed files with 1191 additions and 0 deletions

19
level7/61.rb Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/ruby
# -*- coding: utf-8 -*-
=begin
Person 클래스 정의 (이름, 나이)
=end
class Person
attr_accessor :name, :age
def initialize(name, age)
@name = name
@age = age
end
end
charlie = Person.new("Charlie", 13)
p charlie
puts charlie.name