From 65a5162550f58047974793cdc8067a970b2435c0 Mon Sep 17 00:00:00 2001 From: matz Date: Fri, 13 Aug 1999 05:45:20 +0000 Subject: 1.4.0 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- sample/list.rb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'sample/list.rb') diff --git a/sample/list.rb b/sample/list.rb index 76035e67d6..221f7edb16 100644 --- a/sample/list.rb +++ b/sample/list.rb @@ -1,8 +1,8 @@ # Linked list example class MyElem - # ���֥��������������˼�ưŪ�˸ƤФ��᥽�å� + # object initializer called from Class#new def initialize(item) - # @�ѿ��ϥ��󥹥����ѿ�(������פ�ʤ�) + # @variables are instance variable, no declaration needed @data = item @succ = nil end @@ -15,7 +15,7 @@ class MyElem @succ end - # ��obj.data = val�פȤ����Ȥ��˰��ۤ˸ƤФ��᥽�å� + # the method invoked by ``obj.data = val'' def succ=(new) @succ = new end @@ -40,12 +40,12 @@ class MyList end end - # ���֥������Ȥ�ʸ������Ѵ�����᥽�å� - # ��������������print�Ǥ�ɽ�����Ѥ�� + # the method to convert object into string. + # redefining this will affect print. def to_s str = "