Patrick LeBoutillier wrote:
> You can also use the AUTOSTUDY option to tell C<Inline::Java> that you wish
> to study all classes that it comes across:
>
> use Inline {
> Java => 'DATA',
> AUTOSTUDY => 1,
> ) ;
FYI, The new preferred syntax for options with values of 1 or 0 is:
ENABLE => 'AUTOSTUDY'
or
DISABLE => 'AUTOSTUDY'
its the same as using 1 or 0, but prettier. And that always counts for
something :)
> I'll take a look into implementing an "real" client/server mode later, right
> now my priority is Inline 0.40.
Thanks. I really think you'll get it done in an hour or two. Ryan seemed
to have no problem getting Tcl done ;)
Just say:
use Data::Denter; print Indent $o; exit;
from your build() and load() routines. Look what's in the object, and
adjust accordingly. All the .inl file stuff should be transparent to
you.
Cheers, Brian
--
perl -le 'use Inline C=>q{SV*JAxH(char*x){return newSVpvf
("Just Another %s Hacker",x);}};print JAxH+Perl'