Click to See Complete Forum and Search --> : Programing in linux


adair
08-17-2002, 01:07 AM
I know pythons in linux, WHat other programming lang's are?(i searched, but could not find the answers)

X_console
08-17-2002, 02:14 AM
You must not be searching at the right place. Use http://www.google.com/linux

Here's one that popped up: http://www.helsinki.fi/~rvaranka/Linux/HOWTO/Languages.html

Riley
08-20-2002, 01:49 PM
In linux C/C++ is god. The fastest and most powerful language out there. Perl is also good, but there are tons of others that you may or may not be interested in.

MarcRochkind
08-21-2002, 01:19 AM
Riley: I'll buy the "fastest" part.

But, with what yardstick are you measuring "most powerful?"

Stuka
08-22-2002, 02:06 PM
Not to answer for Riley, but the usual answer to that question is "Capable of doing anything you want, and performing the operations faster than another language (if you're willing to invest the time)." Of course, technically, that can really only be said of assembler/raw machine code, but as C is, in effect "portable assembler" (with a good compiler suite, of course!), the same argument can be made of C. Now, is C/C++ the BEST solution for a given problem - not always (as I'm sure you're aware, having checked out your site ;)). But, in terms of overall power, it's hard to knock C or C++ (unless your definition of power is different, of course).

Rüpel
08-22-2002, 04:50 PM
i think you have to adopt to your concrete problem.

sometimes scripting is easer (bash,perl)

sometimes you're writing for the web (php)

sometimes speed of execution is essential (C)

sometimes you're developing a huge GUI-project (C++)

you can't say: this is the one language, that fits all - it really depends on the problem and your demands.

Riley
08-22-2002, 07:02 PM
I would still stick with the answer C/C++ seeing as how they are pretty easy to program in and in Linux assembly language has no advantage over C whereas in Windows assembly does. Scripting may be easier and slightly easier to maintain, but for applications and server side web development C/C++ can't be beat.

The difference between our answers is in what we see as best. I see power and speed to be best others look at how easy to code a language is.