vote up 8 vote down star
4

I'm a bit disappointed that there doesn't seem to be any effort to make Perl a first-class citizen of the .Net world.

I've read a few 'reasons' in the past but I don't see why they can't be overcome (different garbage collectors, hard-to-parse syntax, part of CPAN modules couldn't be ported, different communities, ...).

Activestate has a Perl.Net product but it's a hack (in the good sense) around a standard interpreter and some syntactic sugar to interoperate with .Net assemblies.
A few years ago they stopped they visual studio integration of Perl citing lack of interest. That was a while ago, before all the changes to .Net to make it more 'dynamic'.

Am I the only one who yearns for IronPerl?

flag

65% accept rate

7 Answers

vote up 9 vote down check

I feel your pain. There are plenty of times where I've wished for Perl's features in .NET, especially when it comes to text type files. However, I've been lucky in that the mantra 'right tool for the right job' has allowed me to use Perl at its best, and not worry about integrating it into .NET applications.

Edit: Having Strawberry Perl has been far more of a boon for me, and allowed me to call most Perl scripts from my Applications when needed, and not worry about direct integration.

link|flag
Downvote this late in the game? :-) – George Stocker Feb 25 at 13:50
vote up 8 vote down

Perl 5 being underspecified is another problem. The situation is a bit better than it used to be, but in many cases the only way to know how something would work in Perl is to try it in perl.

link|flag
vote up 5 vote down

Parrot has (or at least had) a project to do this. You can read an overview document.

link|flag
There's an updated list of languages at trac.parrot.org/parrot/wiki/Languages. 'dotnet' is listed as dormant, but I think there's been some activity on it recently. – Gaurav Dec 16 '08 at 7:46
Thank you, I'll edit my link. – Max Lybbert Dec 17 '08 at 1:05
vote up 4 vote down

And while we are at it, why no JPerl (along the lines of Jython and JRuby)?

link|flag
Bradley Kuhn's thesis was titled "Considerations on Porting Perl to The Java Virtual Machine" ( ohiolink.edu/etd/view.cgi?acc_num=ucin983387768/… ). – Max Lybbert Dec 17 '08 at 1:10
vote up 3 vote down

Apparently it's not that hard to write a new .NET language.. I remember reading that LOLCODE was coded on a plane trip to a conference. On the other hand, Perl has a LOT of things that need to be implemented in order to be anywhere near compatible.

link|flag
1  
I wrote LOLCode.net, and I'm sorry to say it wasn't on a plane. It is indeed pretty easy to add a new language for .NET, though, depending on the complexity of the language and how well it matches the .NET way of doing things. – Nick Johnson Jan 5 at 17:05
I was thinking of the ad-hoc DLR implementation Martin Maly did for the DLR demo at TechEd. – Jimmy Jan 5 at 18:12
Ah, right. Never mind, then. :) – Nick Johnson Jan 7 at 10:47
vote up 3 vote down

Too much exploded whale guts (link).

link|flag
Great read =) 1up! – Eyvind Dec 16 '08 at 9:21
vote up 2 vote down

I believe most of the .NET languages are parsed using straightforward Lex/Yacc combination.

But Perl, as a context-sensitive language, can't be parsed using a simple lexer/parser. This partly explains the origin of the phrase "only perl can parse Perl", and also explains why Perl autoindenters and code analyzers range in quality from terrible to laughably awful.

link|flag
Both C# and VB have specialized parsers. VB is particularly bad because it has to context switch back and forth between VB and XML. – Grauenwolf Dec 16 '08 at 1:30
1  
Parsing is actually straightforward: perl uses bison. It's the tokenizing that has all the magic. – ysth Dec 16 '08 at 2:44
perltidy actually does a pretty good job autoindenting & formatting. – derobert Dec 16 '08 at 5:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.