[#247] Ruby Application Arvhive — Manpreet Singh <manpreet.singh@...>
Hi,
4 messages
1999/03/10
[#252] Re: embedding ruby, is there any example? — Mathowiz@...
Thank you matz!
1 message
1999/03/11
[#256] Syntax Error help please — "bryce" <thecrow@...>
So far I haven't found an error in my code but I keep
8 messages
1999/03/23
[#263] Re: Syntax Error help please
— "bryce" <thecrow@...>
1999/03/25
Matz,
[ruby-talk:00259] Re: Syntax Error help please
From:
matz@... (Yukihiro Matsumoto)
Date:
1999-03-24 03:51:16 UTC
List:
ruby-talk #259
In message "[ruby-talk:00256] Syntax Error help please"
on 99/03/23, "bryce" <thecrow@cyberdude.com> writes:
|So far I haven't found an error in my code but I keep
|getting:
| return appeared outside of method (SyntaxError)
Wait a minute. This message appears that error caused within eval().
Oh, I see. You may have called something like
def foo
eval "return"
end
foo
You can't return from within eval() in the current implementation.
This limitation may be removed in the future implementation.
matz.