From: Michael Fellinger Date: 2007-01-07T11:28:51+09:00 Subject: Re: Last Used Object On 1/7/07, Marc Heiler wrote: > "It's easier, I think, to find out yourself than it is to ask the > question :)" > > > Well, I consider it better to ask silly questions AND get the > reassurance of what I tried, than to assume something on my > own without ever error-checking whether my grounds are solid > or shaken in this regard :) Well, i can reassure you, there is nothing like ; in ruby... and it's one of the things where i really envy smalltalk :) Transcript show: 'Hello, World!'; nl! to compensate this, ruby offers two things... a default receiver of your messages (self) and simple chaining of methods (without tons of parenthesis) print "Hello World".split.join(", ") << "!\n" only fooling around of course, something like ; would really be nifty :|