in reply to Re: Re: Re: B::CC and fake_ppaddr
in thread B::CC and fake_ppaddr

Well it's a c program all right, with 361 lines produced from:
#!/usr/bin/perl -w use strict; sub B::FAKEOP::fake_ppaddr { $_[0]->{fake_ppaddr} || 0 } print "here it is\n";
Should I really post the whole thing here?

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: B::CC and fake_ppaddr
by diotalevi (Canon) on Dec 09, 2003 at 21:25 UTC
    Oh I guess not then. I thought it might have been something interesting. What are you using this for anyway? I've never understood the C-outputting backend to work all that well anyway.
      I have a moderately-large project written in perl, and was entertaining the thought of converting the whole thing to c++ and QT. I am not sure whether B::CC is going to help much or not. I might be better off just re-doing it in c++ rather than trying to translate it. I am also curious to see how perl handles certain things, and thought B:CC might help understand how perl works in detail.