LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


View Poll Results: What is your favorite language?
C 51 40.48%
C++ 35 27.78%
Java 16 12.70%
Shell 17 13.49%
Python 20 15.87%
Other 33 26.19%
Multiple Choice Poll. Voters: 126. You may not vote on this poll

Reply
  Search this Thread
Old 08-24-2007, 06:04 PM   #16
ocicat
Member
 
Registered: May 2007
Posts: 208

Rep: Reputation: 48

Quote:
Originally Posted by jhwilliams View Post
Forth: Never heard of it.
Code:
: IM_COOL ( -- ) CR ." I code in Forth! Woo hoo!" ;
 
Old 08-24-2007, 06:11 PM   #17
jiml8
Senior Member
 
Registered: Sep 2003
Posts: 3,171

Rep: Reputation: 116Reputation: 116
nostalgia...you made me look it up...

http://amr.abime.net/issue_2246

The article titled "Multitasking in Fortran"... A project in Fortran, Assembler, and C. Hacking the startup code provided by the Fortran compiler...writing some self-modifying code in Assembler so that the program would alter some registers in the executable if a specific library was found...

Ah, yes. Those were the days...
 
Old 08-24-2007, 06:21 PM   #18
SciYro
Senior Member
 
Registered: Oct 2003
Location: hopefully not here
Distribution: Gentoo
Posts: 2,038

Rep: Reputation: 51
Other:

You left out Objective-C, by far the best application programing language for the C family class.
 
Old 08-24-2007, 06:26 PM   #19
exvor
Senior Member
 
Registered: Jul 2004
Location: Phoenix, Arizona
Distribution: Gentoo, LFS, Debian,Ubuntu
Posts: 1,537

Rep: Reputation: 87
Quote:
Originally Posted by paulsm4 View Post
I thought I heard that they're re-writing the Linux kernel in Ada.

And that the GNU folks are working on an MSIL compiler so the whole thing'll run under .Net.



You sir need to be drawn and quartered....
 
Old 08-24-2007, 06:29 PM   #20
exvor
Senior Member
 
Registered: Jul 2004
Location: Phoenix, Arizona
Distribution: Gentoo, LFS, Debian,Ubuntu
Posts: 1,537

Rep: Reputation: 87
Quote:
Originally Posted by SciYro View Post
Other:

You left out Objective-C, by far the best application programing language for the C family class.


Another for my dungeon of pain....
 
Old 08-25-2007, 02:11 AM   #21
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
I was waiting for someone to mention Pascal. And Assembler.
--- rod.
 
Old 08-25-2007, 02:44 AM   #22
daihard
Member
 
Registered: Jul 2003
Location: Seattle, WA
Distribution: Kubuntu 14.04 LTS
Posts: 915

Rep: Reputation: 34
Quote:
Originally Posted by theNbomr View Post
I was waiting for someone to mention Pascal. And Assembler.
--- rod.
I thought about Assembly Language, too. I wonder how reasonable it is to categorize Assembler as one language? There are different versions for different hardware platforms, and they are vastly different.
 
Old 08-25-2007, 04:31 AM   #23
ghostdog74
Senior Member
 
Registered: Aug 2006
Posts: 2,697
Blog Entries: 5

Rep: Reputation: 244Reputation: 244Reputation: 244
this is a useless poll.
 
Old 08-25-2007, 05:19 AM   #24
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57
There's not a "favorite language". It depends on what you want to achieve and then you have to choose which one to take. If I want to do a complex application, I would do it in C++ or Java. For drivers or linux related you have to do it in C. If I need to do some quick parsing, I would do it in shell or perl.
So the question doesn't really make sense.
 
Old 08-25-2007, 05:20 AM   #25
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928Reputation: 928
Quote:
Originally Posted by ghostdog74 View Post
this is a useless poll.
'cause Python ain't winning? :D


Cheers,
Tink
 
Old 08-25-2007, 09:32 AM   #26
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,297
Blog Entries: 61

Rep: Reputation: Disabled
LOLpython, of course.

http://www.dalkescientific.com/writi...lolpython.html

Last edited by brianL; 08-25-2007 at 09:33 AM.
 
Old 08-25-2007, 10:05 AM   #27
ghostdog74
Senior Member
 
Registered: Aug 2006
Posts: 2,697
Blog Entries: 5

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by Tinkster View Post
'cause Python ain't winning?


Cheers,
Tink
nope. i am sure you are intelligent enough to know what i mean.
 
Old 08-25-2007, 10:52 AM   #28
jhwilliams
Senior Member
 
Registered: Apr 2007
Location: Portland, OR
Distribution: Debian, Android, LFS
Posts: 1,168

Original Poster
Rep: Reputation: 211Reputation: 211Reputation: 211
Quote:
Originally Posted by ghostdog74 View Post
this is a useless poll.
Frivolous polls add to the richness of life, Ghost Dog.

Quote:
I thought about Assembly Language, too.
You guys are writing applications in Assembly ?
 
Old 08-25-2007, 11:08 AM   #29
nx5000
Senior Member
 
Registered: Sep 2005
Location: Out
Posts: 3,307

Rep: Reputation: 57
Quote:
Originally Posted by jhwilliams View Post
You guys are writing applications in Assembly ?
It's a language and it's called "Assembly Language", so why not? I've done several complete programs in full assembly, it was really funny! useless ! but funny
It can be very interesting for learning purpose or even for understanding better some parts of C language.
In applications with high speed requirements like games, even OSes .. , it's often used, next to another highlevel language (C/C++,..) which is easier to understand, maintain, and port to other architecture.
Python looks good indeed..
 
Old 08-25-2007, 11:09 AM   #30
ghostdog74
Senior Member
 
Registered: Aug 2006
Posts: 2,697
Blog Entries: 5

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally Posted by jhwilliams View Post
Frivolous polls add to the richness of life, Ghost Dog.
so what have you gained so far from this poll?
 
  


Reply

Tags
language, programming


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
whats you favorite 802.11b sniffing application? GNUROCKS Linux - Wireless Networking 5 08-27-2007 03:10 PM
Favorite language DanTaylor Programming 10 03-16-2006 02:58 PM
Which is your favorite language and why? WindowsBurner Programming 40 10-06-2004 09:54 AM
Preferred Language For Application? Crashed_Again Programming 3 12-06-2003 01:09 PM
Favorite scripting language rverlander General 8 09-02-2002 05:06 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 11:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration