From: Chris Date: 2002-04-03T15:55:02+09:00 Subject: Re: statement separator In article <87d6xhuwrk.fsf@jenny-gnome.dyndns.org>, Yohanes Santoso wrote: > Hi, > > Does Ruby has another statement separator beside \n? > > YS. Yes. ; works just fine. def foo puts "bar" end is the same as: def foo;puts "bar";end