On Sun, 20 Feb 2005, [EMAIL PROTECTED] wrote: > I'm trying to push a HV on the stacks. I've tried with > "XPUSHs(hv_scalar(hv));" but I get weird stuff when I print it with > Data::Dumper ("$VAR1 = '1/8';") > > How could this be achieve?
You can't put an HV (or AV) directly on the stack. You can only put a reference to an HV in there. Cheers, -Jan