
Ruby
iteye_4801
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ruby學習系列----疑問(1)
[code]def sayGoodnight(name) #result = "Goodnight #{name}" result = "Goodnight, " + name return result end [/code] [code]puts (sayGoodnight ("john-bo"))[/code] Goodnight, john-bo 執行成功 ...2006-09-25 09:30:25 · 136 阅读 · 0 评论 -
Ruby學習系列----疑問(2)
[code="ruby"] class Song def initialize(name,artist,duration) @name = name @artist = artist @duration = duration end def to_s "Song : #{@name}--#{@artist} (#{@duration})" e...2006-10-26 16:59:34 · 105 阅读 · 0 评论