This is working fine
> puts (/a/ =~ 'haystack')
>
But
this(and similar) expression are not working
> puts ('Kfffddfd' =~ /^[A-Z].*/)
with Icedtea.
Is there any easy way to trace which Ruby Method is mapped with
corresponding Java function ?
Like for '=~' operator which Java function is c
I am now testing this all on BeagleBone Black, and I cross compiled Icedtea
using this[1] reference.
[1] http://icedtea.classpath.org/wiki/CrossCompileOEClassicTutorial
On Mon, Aug 19, 2013 at 1:01 PM, Kumar Sukhani wrote:
> This is working fine
>
>> puts (/a/ =~ 'haystack')
>>
>
> But
> thi