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

Re^2: Weird substitution, missing output

by timpoiko (Acolyte)
on May 10, 2019 at 12:13 UTC ( [id://1233562]=note: print w/replies, xml ) Need Help??


in reply to Re: Weird substitution, missing output
in thread Weird substitution, missing output

Thank you. Because this is a rough translator, I fixed this using non elegant method.
s/</\t\tAAk;\n/g; s/>/\t\tBBk;\n/g; s/\+/\t\tAA*k;\n/g; s/\-/\t\tBB*k;\n/g; s/\./\t\tputchar(*k);\n/g; s/\,/\t\t*k = getchar();\n/g; s/\[/\twhile (*k) {\n/g; s/\]/\t}\n/g; s/A/+/g; s/B/-/g;

Replies are listed 'Best First'.
Re^3: Weird substitution, missing output (Brainfuck translator)
by LanX (Saint) on May 10, 2019 at 13:00 UTC
    You seem to also want indentation with "\t", which means you need to keep count of the loop levels.

    Here a much easier to maintain code, looping over a split and keeping track of indentation.

    And you can easily adapt this code to emit other languages - like Perl° - too, without worrying about polluted input.

    use strict; use warnings; #use Data::Dump qw/pp dd/; #use feature qw/say/; my @table = split /\n/, <<'__TABLE__'; > ++k; < --k; + ++*k; - --*k; . putchar(*k); , *k = getchar(); [ while (*k) { ] } __TABLE__ my %trans = map { split/\s+/, $_, 2 } @table; #pp \%trans; my $bfs = '+[--[--]->+++<]>+.---'; my $level = 0; for my $atom ( split //, $bfs ) { $level-- if $atom eq "]"; print "\t" x $level; $level++ if $atom eq "["; print $trans{$atom}; #print "\t\t\t// was '$atom'"; # debug print "\n"; }

    ++*k; while (*k) { --*k; --*k; while (*k) { --*k; --*k; } --*k; ++k; ++*k; ++*k; ++*k; --k; } ++k; ++*k; putchar(*k); --*k; --*k; --*k;

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

    update

    °) which would allow you to use the perldebugger to step thru BF code.

    update

    changed code to improve readability

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-18 01:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found