Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: Adding 2 + 2 (stack machine,bug fix)

by ikegami (Patriarch)
on Apr 21, 2008 at 19:12 UTC ( [id://682004]=note: print w/replies, xml ) Need Help??


in reply to Re: Adding 2 + 2 (stack machine)
in thread Adding 2 + 2

The parent assumed the accumulator was initially zero. That's not likely in a real-life scenario, so this removes the assumption:
my @stack; my $acc = rand; sub PUSH() { push(@stack, $acc); } sub POP() { pop(@stack); } sub INC() { $acc++; } sub ADD() { $acc += POP; } sub SUB() { $acc -= POP; } PUSH; SUB; INC; INC; PUSH; ADD; print("$acc\n");

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://682004]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-19 13:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found