vote up 1 vote down star

Hello,

I'm now thinking, is it possible to integrate Python, Perl and C/C++ and also doing a GUI application with this very nice mix of languages?

flag

5 Answers

vote up 9 vote down check

Well, there is Wx, Inline::Python and Inline::C, but the question is why?

link|flag
If that's the question, what's the answer? ;) – Abel Oct 27 at 13:06
1  
The answer is 42, of course – DVK Oct 27 at 17:07
@DVK Especially when you don't know the question. – Sinan Ünür Oct 30 at 3:23
vote up 5 vote down

Anything is "possible", but whether it is necessary or beneficial is debatable and highly depends on your requirements. Don't mix if you don't need to. Use the language that best fits the domain or target requirements.

I can't think of a scenario where one needs to mix Python and Perl as their domain is largely the same.

Using C/C++ can be beneficial in cases where you need hardcore system integration or specialized machine dependent services. Or when you need to extend Python or Perl itself (both are written in C/C++).

EDIT: if you want to do a GUI application, it is probably easier to choose a language that fits the OS you want your GUI to run in. I.e. something like (but not limited to) C# for Windows, Objective-C for iPhone or Mac, Qt + C++ for Linux etc.

link|flag
vote up 3 vote down

There's always Parrot. Here's the Wikipedia page. It's a vm to allow you access your favorite libraries from different languages in one application.

link|flag
I don't think it's a practical solution. – Kinopiko Oct 27 at 0:19
3  
You shouldn't make a comment like that without an explanation. – Elizabeth Buckwalter Oct 27 at 6:47
2  
Padre IDE allows writing plugins in any Parrot-supported language. – Alexandr Ciornii Oct 27 at 9:58
3  
Parrot is hardly ready for production use. – Manni Oct 27 at 12:40
2  
@manni And how do you know weather or not this is a project that needs to be production quality? – Elizabeth Buckwalter Oct 27 at 18:15
show 1 more comment
vote up 1 vote down

Everything is possible - but why add two and a half more levels of complexity?

link|flag
Learn and practice all at the same time. – Nathan Campos Oct 27 at 0:08
1  
You can do that by doing one project in one and another in the other language. You'll learn much faster when you use a language in its best fitting domain. – Abel Oct 27 at 0:11
vote up 1 vote down

Python & Perl? together?

I can only think of an editor.

link|flag
+1 Ha, Very nice! – Nathan Campos Oct 27 at 0:09

Your Answer

Get an OpenID
or

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