[#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:00252] Re: embedding ruby, is there any example?
From:
Mathowiz@...
Date:
1999-03-11 03:51:46 UTC
List:
ruby-talk #252
Thank you matz! That exactly what I forget: calling ruby_init() first! I should have known this, because I did similar work for python, where I DO have to call Py_initialize() first. Thank you very much! I will try again. From matz: >Hmm, eval'ing Ruby's expression is very easy by > > rb_eval_string(char *str); > >You need to call ruby_init() first, though.