Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^3: Writing a Programming Language in Perl

by Fieldrunner (Initiate)
on Oct 26, 2011 at 00:10 UTC ( [id://933752]=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

anneli,

I am sure others are more sage, I believe that if you write in a language you create an application or program. So not matter what you wrote in Perl it would still be Perl.

I believe you would need to create a new compiler with or without a scripting interface to pass instructions directly to the processor.

Perl Programming is so more rewarding than SUDOKU, its $var is only (1..9)
  • Comment on Re^3: Writing a Programming Language in Perl

Replies are listed 'Best First'.
Re^4: Writing a Programming Language in Perl
by Your Mother (Archbishop) on Oct 26, 2011 at 00:55 UTC

    The argument quickly becomes: if you wrote it in Perl it would still be C. A language is just a set of grammar, instructions, and symbols. At what level it reaches the processor is something of an implementation detail really. Witness the various flavors of Perl 6 so far. A language with a specification is a language whether or not it's entirely translated from the written page to something executable outside a developer's brain.

Re^4: Writing a Programming Language in Perl
by anneli (Pilgrim) on Oct 26, 2011 at 01:24 UTC

    Hi Fieldrunner;

    I believe that if you write in a language you create an application or program. So not matter what you wrote in Perl it would still be Perl.

    Your program is in Perl, yes. But not the code written in the language your Perl program is interpreting or compiling. Everything is written in something else.

    I believe you would need to create a new compiler with or without a scripting interface to pass instructions directly to the processor.

    This isn't how Perl is done, so how can you call it a language? :D Nothing passes instructions to the processor these days; even C goes through several transformations before it becomes assembly, and then even assembly is transformed (not trivially!) to opcodes.

    The truth is, these are all just implementation details. It doesn't matter how the language interpretation takes place; only how it is interpreted semantically—i.e. what meaning you give to it.

      Everything is written in something else

      Well, C is written in C. And I think Perl6 is written in Perl6.

      This is done through a process called "bootstrapping". Basically, once one's compiler is sufficiently implemented in some language, one can port the compiler to the language it compiles. At that point, the original source is no longer needed; the previous version of the compiler can be used to build the next.

        Ah, yes; well, it seemed best to neglect that detail at this level, but you raise an important exception to this rule.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (6)
As of 2024-04-24 23:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found