Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: Writing a Programming Language in Perl

by ikegami (Patriarch)
on Oct 25, 2011 at 21:54 UTC ( [id://933713]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Writing a Programming Language in Perl
in thread Writing a Programming Language in Perl

The grammar of a language defines its syntax. Parsers (e.g. Marpa) take a sequence of bytes, characters or tokens, check if it conforms to the grammar, and assigns meaning to the components of the sequence as per the grammar.

For example, the job of the parser is to receive "a+b*c" and return "a multiplication of ( an addition of ( identifier a ) and (identifier b ) ) and ( identifier c )".

  • Comment on Re^3: Writing a Programming Language in Perl

Replies are listed 'Best First'.
Re^4: Writing a Programming Language in Perl
by programmer99 (Novice) on Oct 25, 2011 at 22:30 UTC
    I am extremely greatful of the info that has been givenfrom everyone, really I am. But how does Marpa help me create a language/compiler in Perl?
      You need to be able to parse the code before you can compile or execute it. It helps you by creating the parser for you.
        So the parsed code goes through a compiler? And then it is executed?

Log In?
Username:
Password:

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

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

    No recent polls found