vote up 39 vote down star
14

The stereotypical programmer is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being realistic about whether their programming language is the best tool for the job.

The other kind of programmer can take a step back and switch between languages (or is not very concerned about doing everything in just one language), is a "jack-of-all-trades", and doesn't mind learning a new language as long as it solves their problem in a good fashion.

Did you ever switch from one programming language to another? If yes, why?

[P.S. Please don't just answer with "I switched from language A to B because company X sucks! I think it will be very useful to understand why people switch between languages, or what's the best tool for a particular kind of job]

flag
1  
what makes you say the stereotypical programmer works in one language. Most I know work in many (Javascript, some backend language, XSLT, shell scripts, build scripts, etc.) – grom Nov 26 '08 at 8:49
show 1 more comment

113 Answers

vote up 1 vote down

It can sound funny, but I started as C# developer, and then had to switch "temporary" to Java because of project which I was assigned to, but then I started using IntelliJ IDEA and switched to Java permanently because of it. I still think C# is better language and still prefer it for GUI desktop applications.

link|flag
vote up 3 vote down
  • Started in Basic - Wanted to modify the 'Gorillas' game that came with MS-DOS.
  • Went to VB - So I could make AOL Bots.
  • Went to Java - Because it was the new buzzword and I wanted to make annoying applets.
  • Went to C - Because it was taught in High School and college (and got sick of the slow JVM at the time).
  • Went back to Java - For my first job and I wanted to eat some JavaBeans.
  • Went to C# - For my second job.
link|flag
vote up 1 vote down

BASIC

Assembly

Pascal

C

Shell scripts

Python

Scheme (I gave this one up pretty quickly...)

Java

Then I realized that it might be best to learn more languages and use the right one for the job.

Now I use Objective-C, Java, PHP, Python, C, C++ and C#. From this list I can always find one that suits a certain problem/platform best.

I stayed away from perl because it makes my head hurt.

I've never used Ruby, but if a project will require it, I will add taht to the list, too.

link|flag
vote up 1 vote down

Basic -> C -> C++ -> Visual C++ -> Java -> ARM C++ -> C# -> PHP (as a cronjob) -> Python -> Perl

as work requires it.

link|flag
vote up 1 vote down

IBM/MS Basic -> Pascal and Assembly -> Java, C/C++ -> Java, C/C++, smattering of Lisp, Prolog, shell scripting -> Perl, VBScript -> PHP, Javascript, a bit of Python -> Ruby.

In language learning, I just kept looking for and finding increasing contentment, satisfaction and even joy. IMO, the "many tools in the toolkit" analogy only goes so far. Today's modern languages are extremely powerful and flexible, and most popular languages have the wherewithall to let you do 99% of the applications you want to, and do it reasonably well. That's the reason why you often hear "I would try Language Y, but I can already do it in Language X".

I think, in choosing a language for a task (or for "all" your tasks), you should aim to minimize frustration and annoyance. You want a language that gives you the shortest path from idea to working implementation. Since different people can have different mindsets and preferred approaches to problem solving, and languages (or rather, their authors) have different philosophies on how programming should be done, what fits you most comfortably will be different from what fits others. But I think everyone should strive to reach the goal of minimum effort for maximum results.

Excessively verbose syntax; syntax that "needs" an IDE to write; standard libraries and APIs that are difficult to remember; immature standard libraries; compiler quirks; exposure of underlying hardware or low-level architecture (and the need to work with or around them) -- we should seek to remove all these things. Ultimately, the only thing a programmer needs to do is specify things that a computer should not decide. Everything else is an obstacle to the utopian programming experience. If a language empowers us this way, then, in my opinion, we can begin to talk of that language as "the best language".

For me, Ruby comes closest to being this language.

link|flag
vote up 1 vote down

I came from programming VB6 to VB.Net but now I'm in C#, I switched to this language cause at the beginning of this year (2008) i had to make a very simple application in a mobile device and i had to write the code in VC++, I never programmed in VC and was difficult but also was magical, the experience was awesome. I had to study very much and I really fell in love of the C language.

That hooked me to C# although is the same framework of VB.Net but you also find more resources in the web and another reason I switched (C, C++, C#) is that (IMHO) I feel that you become a better programmer, personally I found myself with an enlightment feeling about this language, the last time I felt that way was when I started to study Scheme.

link|flag
vote up 1 vote down

I tend to dabble in every language I can get my hands on, but if I count just the languages with which I've actually produced something useful (in no particular order):

  • 8080/Z80 assembly language
  • MBASIC
  • C
  • Pascal
  • FORTRAN
  • C++
  • C#
  • Python
  • Perl
  • Visual Basic
  • JavaScript
  • PHP
  • x86 assembly language
  • dBASE
  • SQL
  • Informix-4GL

and a few DSLs I've built, some which were pretty useful and others I'd really like to forget :-)

link|flag
vote up 4 vote down

I can't really post a timeline of languages I've switched through because I tend to use multiple languages at the same time. I think it's important to have more than one language in your toolset - this means you can choose the right tool for the job. I hate having to work with developers who've learned to use one language and apply it to every single job they undertake. It's like working with someone who in the murky past was taught to use a hammer, and now uses it for everything.

  • Got a nail that needs bashing in? That'll need a hammering!
  • Got a screw that needs screwing in? That'll need a hammering!
  • Got a kitten that needs looking after while you're on holiday? That'll need a hammering!
link|flag
show 1 more comment
vote up 2 vote down

"Did you ever switch from one programming language to another? If yes, why?"

Yes. To stay employed.

See Programming Languages I've Learned, Programming Languages I've Learned in Order, Programming Languages I've Learned (In Rough Order) Meme.

link|flag
vote up 1 vote down

Java to C#

link|flag
vote up 3 vote down

Lots of good reasons above to change languages because languages are different. I'm going to mention times I changed from one language to a very similar language.

Started out writing shell scripts in sh with plenty of sed and awk. Switched to ksh88 when I worked for phone companies; not much change. Then, when ksh93 was available, switched in earnest. Reason: sh compatible still works for 90% of scripts, but when extra power is needed, ksh93 is there. I never need or use awk any more.

Second example: Learned Icon in school around 1990. Still think Icon has the best string-processing model ever invented. Very good data structures for sequences, sets, tables. But Icon has poor libraries, poor integration with OS, and can't be extended. Still worth it for string processing and powerful search capability. But by 2000, Lua is powerful enough to have first-class functions, good integration with OS, great extensibility, and very good string processing. Essentially the same data structures as Icon, but a simpler design. Not as good at strings as Icon, but way better than awk, perl, and the rest of the regexp crowd. By 2005 I discover I have not written a new Icon program in 6 years. Now in 2008 I am replacing legacy Icon code with new Lua code.

Third example: Modula-3. Used M3 for a major project around 1990-1992, shortly after it was invented. Still the best design I have ever seen for writing large systems programs. Superb ability to have both safe and unsafe code in the same program. But Digital has no idea how to promote a language, in 1995 Sun rolls out Java, by 2000 it is clear that Modula-3 is dead. At the same time, systems code has become a tiny fraction of what I do. So now when I have to do it, it is back to the C I learned in 1984.

link|flag
vote up 1 vote down

Started in Quantel Business Basic

SAS on S/370 - changed employer

SAS & C on OS/2 - changed employer

SAS on Mac - changed employer (dual boot? don't remember...)

PowerBuilder - internal transfer to app dev group

PowerBuilder @ new employer

Java - client choice

Java/PowerBuilder/Javascript combined

Powerbuilder - changed employer

C# - new development @current employer

link|flag
vote up 1 vote down

Yes, many times I have switched and probably will do so in the future. A few examples:

1) Basic -> Pascal. In high school, there was a shift to a language that allowed more types as Basic seemed rather limited to int, string, and arrays, at least the Watcom and Commodore 64 Basic I used.

2) Pascal -> Modula-3. Going from first to second year at university, from Macs to Unix systems this was the change in programming languages.

3) Modula-3 -> C/C++. 2nd to 3rd year university, the latter was used for both a Concurrency and a Data Structures course.

4) C/C++ -> VBScript. ASP replacing ISAPI Extension functionality in my world. It was kind of nice to get into HTML and add scripting tags to make the functionality rather than work in C/C++ Macros and a propietary mark-up language.

5) VBScript -> C#. Going to ASP.Net from ASP. This was useful in getting rid of the on-the-fly variable naming issues I had seen in ASP repeatedly as most variables are global by default.

Of course this omits reversions as legacy applications may have used older stuff as well as 3rd party code that may have been in something I didn't have a lot of control over. I also am skipping dialectal changes like going from Commodore 64 Basic to Watcom Basic.

link|flag
vote up 1 vote down

As a hobbyist, BASICA to GWBASIC to QUICKBASIC, because that is what came with the computers. Those were the logical progressions.

Through high school, I picked up, in no particular order Borland C++, Visual Basic 3, a bit of Perl, and a little COBOL. I did odd contracts in each, none of which were probably particularly good.

Through college, I switched largely to Visual Basic 4/5 and Visual C++, with courses that covered Perl, C++, and COBOL.

My first job in development was Visual Basic 5 and moved to a shop that was using Visual Basic 6. That shop subcontracted me to a couple of vendors where I revisited Perl and COBOL again (the client was Honeywell, who I am sure is still using both languages, based on their rate of adoption).

Moving to another job, it was still mostly Visual Basic 6 with a side trip through PHP and Classic ASP. Finally, I was able to get my foot in the door with a little VB.NET very close to the time of initial release.

We packed up our bags and moved east for better job opportunities where I hit the ground running with C#. It has been mostly C# since then, with the occasional "legacy" application in VB.NET.

link|flag
vote up 0 vote down

C++ to C# Unfortunately I am back on C++ now

link|flag
vote up 0 vote down

Anyone who has been in this industry for more than a few years has switched languages. In 30+ years of professional programming, I have used:

Fortran Pascal C Algol APL PDP-11 Assembler Cobol OS-360 Assembler Perl Javascript VB / VB.Net

There are various dialects of those languages - such as Cobol on Univac 1100, IBM MVS, IBM System/38.

A good programmer can pick up just about any language.

A Fortran programmer can write Fortran programs in any language.

link|flag
vote up 0 vote down

More-or-less linear:

  • 8-bit Durango BASIC because that was my first job
  • Nixdorf BASIC - hired to maintain accounting software
  • VAX Fortran - because I became a VMS sysadmin
  • Modula-2 - because it was a nice compiler for my Fat Mac 512K
  • Think Pascal - because it had a better debugger and let me build real Mac programs
  • Think C - cut-down C++ because 3rd party libraries were increasingly using C apis
  • C++ - to use Metrowerks PowerPlant framework, and MFC and others
  • Objective-C because I had to leave PowerPlant behind and move to Cocoa for OS/X GUI

Pretty much in parallel over the last few years:

  • REALbasic - to get some simple GUIs written, stayed because I found it productive for cross-platform GUI programming and they had implemented enough of my favourite OO features to make it a neat language
  • Python because I heard people rave about it, tried it and felt comfortable, great for prototyping
  • Ruby because Andy Hunt's praise intrigued me and I'm an OO guy to the heart who dabbled in Smalltalk and Python white-space sensitivity was in my way writing code generators
  • C# because I wanted to program better GUIs than MFC and I like the new features in the language
  • Forth to play with programming on my Palm on a tropical holiday
  • Lisp (Scheme) because of Paul Graham
  • ActionScript/JavaScript because I needed to receive brainwaves in Flash
  • XSLT because I'm a masochist (and I've had to deploy some serious local XML transformations)
link|flag
vote up 0 vote down
  • 1989: Started with Pascal (Turbo, CPM)
  • Moved to Pascal (Turbo, MSDOS) - when I bought a PC!
  • Integrated 8086 assember (inside Turbo Pascal) - because I could. Fancy graphic demo scene FTW!
  • Moved to Delphi - needed to get PAID for the work.
  • 2000 Moved to Java - because it was the cool thing, and delphi didn't do web.
  • Moved back to Delphi a bit - money, again.
  • Moved to C#, because I wanted to do .NET.
  • Learned Ruby, because rails looked cool. Never used it.
  • 2008 Learned Python because google app engine looked cool. Using it a little.
  • 2009 Learning Objective-C again - because I have an iphone :) Not using it much.
  • Still using C#. Pays the bills. Wish I could use it on the iphone and GAE....

Learning new stuff keeps me interested, and also frustrates me no end. Go figure.

link|flag
vote up 0 vote down
  • Started in Basic - cause it shipped with DOS (I didn't have money for anything else)
  • Moved to Pascal - cause my friend used it (he used it because in high school thats what they used, and I had yet to get to high school)
  • Moved to Delphi - cause turbo vision was a ball ache and making windows apps seemed cool.
  • Moved to ASP, PHP and Perl - cause my job required me to do it
  • Moved to Kylix - cause i didn't realise Borland would shoot themselves in the foot so bad and cause making Linux apps seemed cool (pheh I'm better than those Windows developers now)
  • Moved to C# - cause I needed a job and that's where the jobs were.

So to summerise: No budget -> peer-pressure -> wow factor -> finally to get the job done (i.e. basically the same process corporates go through when picking anything)

link|flag
vote up 0 vote down

I switch from language to language on daily basis, at work i use C#, for personal projects PHP for Web and Delphi for windows applications.

link|flag
vote up 0 vote down

I went Basic, Pascal, Visual Basic, C#

with a little bit of C++ and Java at uni

link|flag
vote up 0 vote down

Sure did

Fortran IV to Fortran 77 in the mid-eighties

Fortran 77 to Fortran 90 in the late nineties

Fortran 90 to Fortran 95 in the very late nineties

and Fortran 95 to Fortran 2003 about 15 minutes ago

Oh, and in case anyone reading this thinks I'm being frivolous, I've also programmed in Pascal, APL, C and C++, Haskell, Python, Mathematica, Matlab and probably other stuff I've blotted from my memory.

link|flag
vote up 0 vote down

Heh...this is beginning to look like a programmer resume site.

List<ProgLang> relevantLangs = myMemory.RetrieveLanguages(
    ProgLang.InteractionFlag.OnceTypedSome |
    ProgLang.InteractionFlag.ForcedToUseInSchool |
    ProgLang.InteractionFlag.UseDailyAtWork |
    ProgLang.InteractionFlag.PlayWithForFun);

foreach (ProgLang lang in relevantLangs)
    lang.DumpToPost();

Did you ever switch from one programming language to another?

Absolutely. Do so daily.

If yes, why?

Many reasons (With higher likelihood first):

  • Client N's code is in language X[N], and:
    • a rewrite is impossible/improbable
    • the language is suitable for the task
  • I control a project's code but I must use language X1 because
    • Platform compatibility
    • Existing API interaction
  • I control a project's code and I want to program in language X2 because:
    • Its strengths fit the problem
    • I want to learn the quirks of this new (to me) language
    • I want to keep up on new language features
    • I want to use its strong library support for task T

In summary, as a consultant, I language switch mostly based on external, hard requirements. That said, however, I often switch to try new things, continue learning, and stave off monotonous, required language inundation.

link|flag
vote up 0 vote down

Used: CBasic -> FORTRAN -> Z80 Assembly -> Lotus 123 (see below if you don’t think spreadsheets are a programming language) -> C -> 8080 / 8086 / x86 / 68000 Assembly -> Hyperscript -> Eiffel -> Objective C -> C++ -> Java -> C#.

Tinkered With: TRS-80 Basic -> 6502 Assembly -> Lisp, PL/1, MBasic, Dbase, Postscript, Visual Basic, SQL, Delphi, JavaScript, F#.

Someday I’ll have a look at what all the fuss is with dynamic languages, but I am too busy lately. Will C# 4’s new dynamic features count?

If you have nothing better to do, below is a little insight into how / why I ended up using some of these and how / why I moved on to something else.

TRS-80 Basic – I was a young Honda motorcycle mechanic in 1978 when the owner of the motorcycle shop purchased a TRS-80 in an attempt to automate the parts department (all those parts and no computer – how did we do it?). I tinkered with it some, but the unreliable cassette tape storage was too frustrating and racing motocross was a lot more rewarding for a 19 year old with a competitive streak. Too bad for me.

6502 Assembly - I was a bored motorcycle service manager in the dead of winter in Lawrence, Kansas (Rock Chalk, Jayhawk!) in 1982 (too cold for motorcycles and not enough snow for snowmobiles). So I bought an Atari 800 to play video games and found that programming was more fun. My Atari 800 did not have enough RAM for Basic - sometimes it's better to be lucky than good (I’ve often thought that learning assembly before anything else taught me something useful). I actually got a Reversi game and disk copy program working and somehow convinced Byte magazine to publish a reference to them. I think I sold three copies…not very rewarding considering the fact that I was sure I had the fastest disk copy program ever created.

CBasic – I decided it might be nice to get paid more than 9 months out of the year (motorcycle service in Kansas does not pay too well in January) so I sold the Atari and bought a Xerox 820 CP/M computer which had a pair of huge 241K 8 inch floppy disk drives and an unbelievable 64K of RAM! It was the most expensive thing I had ever purchased at the time. I was fortunate to find consulting work for a local VAR customizing CBasic accounting software for local businesses. CBasic was far superior to MBasic (Microsoft Basic) for many reasons (did I mention it was much faster). Looking back, CBasic was the first language I used which was reasonably good for developing business software.

Z80 Assembly - the VAR got involved in marketing a portable computer called the Zorba (like the old Osborne portable). It had reliability issues and I got involved in fixing some of the issues which was a great learning experience. Wow, I could write some amazingly fast stuff in Z80 assembly. Did I mention that I used to race Motocross and I like “fast”?

Lotus 123 - I know, most programmers don't think of spreadsheets as a programming language, but you could make a case that "spreadsheets are the most popular functional programming languages in the world" (Google it and you'll see what I mean). Lotus 123 was the first really great piece of software I used. It was so much better than VisiCalc, SupreCalc and Microsoft's Multiplan which I had helped our customers with. Did I mention that Lotus 123 was faster - like night and day! I went to my boss and told him we should develop our own spreadsheet, because as good as 123 was, we could do it better (I think I probably meant “even faster”). He laughed and promptly dismissed the idea – but I never forgot it.

C – Through a series of fortunate events, two years later I was leading the development of the Smart Spreadsheet 2.0, and later SmartWare 3.0 (office productivity software for DOS / Unix which never made the transition to Windows). After going to COMDEX in 1986, I persuaded the powers that be to let me start building a new spreadsheet for Windows – which eventually became Wingz for Macintosh because Windows wasn’t quite ready for prime time. Wingz went from 0% to ~25% of the run rate for spreadsheets on the Mac in a short period of time thanks to the fact that it was years ahead of Excel in several areas (yes, it was faster, but it was a lot more than that). Unfortunately for me, Informix had purchased the company and decided to get out of productivity software when their core database business hit a rough patch, so all that hard work went down the tubes (biz lesson – own your own code if you possibly can).

Smart Project Processing and Hyperscript - SmartWare and Wingz actually had their own builtin languages - Smart Project Processing and Hyperscript. Both were English like (wordy). I had argued for making the language built into Wingz a derivitive of Pascal - but the powers that be were sure that nobody who used a spreadsheet would ever want a real programming language.

8080 / 8086 / x86 / 68000 Assembly – back in the day when it was the exception to have floating point hardware it was crucial to have your own floating point routines. Smart Software and Wingz also had a fair amount of assembly for frequently used string and memory routines. Sometimes I still wish I could implement a crucial C# method in assembly…but who wants .NET code that is unsafe these days?

Eiffel - I stumbled upon one of Bertrand Meyer’s early books on OO programming in Eiffel. I never did any real work in Eiffel but I believe reading this book taught me more about creating reliable and reusable software than anything else I’ve done in all my years of programming (that sounds like something an old person would say).

Objective C – I purchased a beautiful Next Cube for $15K of my own hard earned cash (my wonderful wife though I was nuts). I quit my job (guess what my wife thought about that?) and tinkered around for a while, did some performance work for a networking company and eventually started to write my own spreadsheet for NextStep in Objective C. The Next was built on the Mach kernel and was the first OS I used with real lightweight threads – the things I learned about multi-threading back then are definitely useful now! It had Display PostScript – which was actually the thing that first attracted me to it. The concept of the display and printer having the same graphics language seemed like a no brainer to me and I was sure Next was the next big thing. Most people know the descendant to NextStep as Macintosh OS X.

C++ - Unfortunately, Next didn’t make it and I needed to find a way to pay the bills, so I converted my Objective C / NextStep spreadsheet to C++ / Windows (via MPW Pascal but that’s another story) and teamed up with some guys who knew how to run a business and sell things. We released Formula One as a VBX (Visual Basic 4 Extension) and C library in 1993, followed by a C++ wrapper, an ActiveX (COM) version and even a Netscape Navigator plugin – which was the first internet spreadsheet AFAIK.

Java – Having led the development of commercial software which ran on multiple platforms, I completely bought into Java’s Write Once Run Anywhere mantra. I already thought the idea of a “real” spreadsheet running in the browser was a real solution to a real problem and Java Applets seemed to be the perfect way to implement this. Formula One for Java was the dominant spreadsheet component for Java for several years – basically until the pricing model was changed to “as much as we can get” which drastically reduced the ability to add customers. Formula One is now the engine behind Actuate’s e.Spreadsheet which is still a pretty good product as far as I can tell (albeit expensive).

C# - My official reason for leaving Actuate several months after they purchased Formula One was the fact that they would not let me build Formula One for .NET (biz lesson – don’t have business partners who will sell your code to someone else if you can possibly avoid it). They had and still have good reasons for this and I still like the people there – but I was tired of trying to build a real GUI application with Java / Swing. While Java was great at some things, it was definitely not so good for building GUI applications (remember, this was 2002, I don’t know how true that would be today). C# made some important improvements (Java still had no enumerated type after 7 years!). But the key was that, IMO, Java’s Write Once Run Everywhere mentality led to sub-standard Windows applications – and most business software developers who wanted a spreadsheet component wanted it to look and feel like proper Windows software.

Managed C++? – I sometimes think we might rewrite our core engine in Managed C++. Theoretically, we could then build safe .NET components as well as a native core engine from the same source code base. I have no doubt that a C++ core engine compiled to native code would be faster at any given point in time than the C# equivalent. But my concern is that adding features and improving algorithms would take much longer in C++ than in C#, and that eventually we would get to the point where we would have been better off sticking with C# for it’s increased programmer productivity.

F#? - As I consider the work we need to do to take better advantage of multi-core processors, it seems that it might make sense to convert portions of our code to F#. If we’re lucky, all of the features which make F# better for multi-threaded scalability will find their way into C#.

link|flag
vote up 0 vote down

For me:

  • Pascal
  • Lisp
  • C
  • Objective-C
  • Java
link|flag
vote up 0 vote down

A lot actually.

C/C++ -> Java -> PHP -> Perl -> Objective-C -> Applescript -> Python -> Ruby

Basically, right tool for the right job, and some languages are fairly mature enough for specific jobs (C/C++ for speedy apps, Java for Mobile Dev, PHP for Web Dev, Perl for Web Services and Text Manipulation, Objective-C for Mac Dev, Applescript because you have no choice [some say Carbon... but come on], Python for Math and Netwwork Server Stuff, Ruby for RAD Web Development).

Besides, all of the new languages are based on C constructs so I think there won't be too much issues moving in between languages.

link|flag
vote up 0 vote down
  • I switched Perl for web development.
  • I switched to Python for large number calculations.
  • I switched back to C++ for certain fast applications.
link|flag
vote up 0 vote down

Sinclair BASIC -> Pascal -> C -> Java

Has some fun with Fortran and C++ on the side.

link|flag
vote up 1 vote down

[fanboy vs. language slut] Did you ever switch from one programming language to another? If yes, why?

I'm a language slut. I like learning new languages, and somewhat perverted I like (sometimes) deliberately using the wrong tool for the job, just to see how far any given language can stretch. Of course, only for my hobby projects :)

I often "switch" languages, in that I'll typically use the language I know that'll let me do what I need fastest. For some time, all I knew was C, so I wrote everything in C. Then python, and bash scripting. If portability is ever an issue, I'll probably rewrite my ~/bin in python, but for now /bin/sh is fine.

To answer your question succinctly: I've never switched per se, I've just added new tools to the toolbox and stuck to "the best one", which has tended to remain constant throughout some time, but with sudden shifts once I learn a new language.

And I advocate learning new languages for a broadened understanding of what programming is. If I could force any languages upon people, I think I'd pick the following:

  • C: for the pointers, and the low-level understanding you get
  • Haskell: for understanding (pure!) functional programming
  • Lisp (or scheme): for understanding macros and (so I've heard) (mini-)language design.
  • Smalltalk: I don't know it, but I think it might teach you a thing or two about what OO was really meant to be about.

And I don't recommend a "switch" to any of them (I only know C well enough to be able to recommend a switch to that, and I know there are many jobs that C aren't the ideal tool for). But learn them for the better understanding they'll give you.

link|flag
vote up 0 vote down

Several times for several reasons: I do believe there is no perfect language for every application and want to use something appropriate for the job. Addtionally, I am one of those people who just likes to learn new languages

Anyway, the reasons (briefly):

BASIC to Pascal (then VAX Assembler then switching around between those three + FORTRAN and COBOL, depending on the class) when I went from a programming class in high school to majoring in CS in college.

From BASIC to FORTRAN to C to Perl for various jobs. Throw in some DCL and Bourne/BASH scripting along the way. Also, Pick Access/English (anyone else on SO done that?).

Perl to Python when I could choose my language on the job and found it too difficult to use Perl for what I was trying to accomplish at the time.

Most recently, Python to Java, PHP, and IDL (Interactive Data Language) for a new job.

link|flag

Your Answer

Get an OpenID
or

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