Slashdot Mirror


John W. Backus Dies at 82; Developed FORTRAN

A number of readers let us know of the passing of John W. Backus, who assembled a team to develop FORTRAN at IBM in the 1950s. It was the first widely used high-level language. Backus later worked on a "function-level" programming language, FP, which was described in his Turing Award lecture "Can Programming be Liberated from the von Neumann Style?" and is viewed as Backus's apology for creating FORTRAN. He received the 1977 ACM Turing Award "for profound, influential, and lasting contributions to the design of practical high-level programming systems, notably through his work on FORTRAN, and for seminal publication of formal procedures for the specification of programming languages."

63 of 271 comments (clear)

  1. Wow. by Mikachu · · Score: 2, Funny
    FTA:

    His daughter Karen Backus announced the death, saying the family did not know the cause, other than age.

    Psh, he developed FORTRAN. I'm surprised he even lived to 82 without being killed by a rabid programmer. ;)
    1. Re:Wow. by MichaelSmith · · Score: 2, Interesting

      I'm surprised he even lived to 82 without being killed by a rabid programmer. ;)

      I am inclined to blame him for Basic as well, because it started out as a kind of simplified Fortran.

    2. Re:Wow. by Anonymous Coward · · Score: 5, Insightful

      I am inclined to blame him for Basic as well, because it started out as a kind of simplified Fortran.

      I'm more inclined to thank him for all the other high level programming languages.

    3. Re:Wow. by lbmouse · · Score: 2, Insightful

      "Psh, he developed FORTRAN. I'm surprised he even lived to 82 without being killed by a rabid programmer. ;)"

      He lived to 82, I doubt there are any modern-day potato-ass programmers that could catch him even in his golden years. We should feel fortunate for his contributions and hope to hell we live that good of a life, that long. Now, where did I leave my Cheetos?

    4. Re:Wow. by dr_dank · · Score: 3, Funny

      I'm even more inclined to thank him for playing both Mr. Howell and Mr. Magoo.

      --
      Where does the school board find them and why do they keep sending them to ME?
    5. Re:Wow. by mysticgoat · · Score: 5, Interesting

      I am inclined to blame him for Basic as well, because it started out as a kind of simplified Fortran.

      FORTRAN was the first working high level compiler language; BASIC was the first working interpreter language. Very different underlying structures.

      Now COBOL was the second major high level compiler language, and it was very much a reaction to FORTRAN, so I suppose using parent post's logic, we can blame Backus for COBOL. But then that cheapens the contributions of the Girl Admiral (Grace Hopper) who gave us such wonders as the nanosecond wire, and MULTIPLY 2 BY 2 GIVING FOUR.

      For the youngsters out there:

      1. FORTRAN (FORmula TRANslator) was the break-through from machine language and assembly to a higher level language with a compiler. Everything we do now is based on this; I believe that many mission critical engineering libraries are still in Fortran (they were a few years ago)
      2. COBOL (COmmon Business Oriented Language, Compiles Only By Odd Luck) was the second successful high level language. Its major improvement over Fortran was getting rid of triphasic logic (branch on <0, or =0, or >0) in favor of boolean logic (branch on !0 or 0). Its most noteworthy failing was the requirement to use the period punctuation mark (full stop) to end sections. This was particularly a problem for girl programmers, since at the time getting into trouble because you missed a period had serious consequences. Cobol simply put too much emphasis on a nearly invisible and easily missed period.
      3. BASIC (Beginners All-purpose Symbolic Instruction Code) made two big advances: first, it attempted to span both engineering and business computing (doing each with the same degree of imprecision); second and more important, it introduced the concept of using an interpreter rather than a compiler. Good stuff, that. Yet another baby step toward tomorrow's virtual machines. Most noteworthy program ever written in Basic: Eliza. Most significant long term contribution: the reaction to its spaghetti coding style, from which Pascal and modern procedure based programming arose.

      </drivel>

      It is hard for some of us graybeards to poke fun at Backus. His vision was the inspiration that has taken us all down this road.

  2. Also known for... by Anonymous Coward · · Score: 5, Informative

    ... Backus-Naur Form (BNF) grammars, the sine qua non of compiler design for the most-popular languages out there.

    Truly an American icon. Even if you never ran LEXX or YACC in your life, Backus's impact on contemporary culture cannot be denied.

    1. Re:Also known for... by MichaelSmith · · Score: 4, Funny

      Truly an American icon. Even if you never ran LEXX or YACC in your life, Backus's impact on contemporary culture cannot be denied.

      Many times I have edited lex and yacc code, but never have I understood what the hell I was doing.

    2. Re:Also known for... by belmolis · · Score: 4, Informative

      BNF is a useful notation, but it is just a notation for context-free grammars, which had already been developed and whose properties were already understood. Chomsky described the Chomsky hierarchy of formal languages, including context-free languages (type 2), in 1956, three years before Backus introduced a primitive version of BNF in describing what became Algol 58. The basic ideas came from mathematical logic and linguistics. Backus' role was to introduce these ideas to the specification of computer languages, ironically in part in reaction to the problem of specifying Fortran, which is not context-free.

    3. Re:Also known for... by tcopeland · · Score: 2, Interesting

      > Many times I have edited lex and yacc code, but
      > never have I understood what the hell I was doing.

      So true. I'm writing a JavaCC book and I'm still learning new stuff about it even though I'm almost done with the book.

      The thing that's worked best for me is writing the lexical spec first, then going back and writing the parser spec. At least then you know that the basic tokens of the language are being recognized before you try to shape them into a parse tree.

    4. Re:Also known for... by Anonymous Coward · · Score: 2, Funny

      Push another one onto the stack of computing gods. Someday during the final battle between men and AI we will have to pop that stack. Lets hope it is a long way off. And lets hope that Dijkstra isn't too angry at being close to Backus in the great stack in the sky. The irony of being in a stack with Backus would kill him with its irony if he weren't already dead.

    5. Re:Also known for... by hey! · · Score: 4, Funny

      Many times I have edited lex and yacc code, but never have I understood what the hell I was doing.


      Well fear not. I think far fewer programmers today are familiar with BNF than back in the day when anyone who was not utterly worthless had a dog eared copy of The Unix Programming Environment. This means the end of all those tersely documented syntaxes, and with them those cryptic yacc scripts.

      Modern system designers have taken a clean sheet approach to the problem of grammar, one which escapes the limits of technology in Backus' generation, when computing power was scarce relative to brain power. Today you are much more likely to be called upon to work with XML schemas, which follows a simple easily understood philosophy: if something is worth saying, then it is worth saying with a lot words.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    6. Re:Also known for... by idontgno · · Score: 5, Funny

      if something is worth saying, then it is worth saying with a lot words.

      I like the corollary more: "XML is like violence. If it's not working, you're not using enough of it."

      --
      Welcome to the Panopticon. Used to be a prison, now it's your home.
  3. Worst headline ever by WWWWolf · · Score: 5, Funny

    John W. Backus Dies at 82; Developed FORTRAN

    This has to be the worst Slashdot headline ever. Makes FORTRAN sound like a type of cancer or something. (I thought that stuff was more of COBOL's league.)

  4. So he developed FORTRAN as he died, huh? by mushadv · · Score: 5, Funny

    What does that entail? Did he hemorrhage "WRITE (6,7) 7 FORMAT(12H GOD DAMN IT)" and flatline? What about his death rattle? "STOP END"?

  5. We Stand On The Shoulders of Giants by quakeaddict · · Score: 5, Informative

    If it were not for the work of that generation, and the creativity they displayed, our world would be a far different place.

    Poke fun at Fortran all you want, but dammit I use code today to drive a statistical website that was written in the 60's, and it still runs great.

    http://nces.ed.gov/nationsreportcard/nde

    --
    I'm still working on a clever footer.
    1. Re:We Stand On The Shoulders of Giants by sosume · · Score: 2, Insightful

      ..to drive a statistical website that was written in the 60's

      talking about anachronisms ...

    2. Re:We Stand On The Shoulders of Giants by aussie_a · · Score: 4, Funny

      2060s dude, he's a time traveler. Although you don't want to know the cataclysm that forces future programmers to write in FORTRAN *shudder*

    3. Re:We Stand On The Shoulders of Giants by Slashamatic · · Score: 3, Interesting

      To heck with just statistics. Fortran is alive and well at the heart of some major airline reservations, checkin and cargo systems. yes, they tried to move to newer technologies but they couldn't handel the load, particularly at points when there is a lot of rescheduling such as during bad weather.

    4. Re:We Stand On The Shoulders of Giants by Don_dumb · · Score: 4, Informative

      Speaking of bad weather, I think these guys - http://www.metoffice.gov.uk/ who are the authority on weather prediction in the UK. Use Fortran for weather forecasting and climate prediction http://www.metoffice.gov.uk/research/nwp/numerical /fortran90/index.html and they don't seem to be tiring of it.

      Personally I don't see why this man seems to be getting such a bad send off here. After all the man invented a programming language that at a time when their were few others around, a language that has survived in critical usage until today. There may be many geeks on this site, but I doubt many of those who seem to be dancing on his grave could have done something so difficult, anywhere near as well as he did.

      Just because an old language is more difficult to use than some more modern ones, does not mean that old language is a bad thing to have existed. And it doesn't mean that it wasn't a great achievement.

      --
      If this were really happening, what would you think?
    5. Re:We Stand On The Shoulders of Giants by Rob+the+Bold · · Score: 2, Informative

      "..to drive a statistical website that was written in the 60's"

      talking about anachronisms ...

      Funny, yes, but misinterpretation is not insight.

      I use code today to drive a statistical website that was written in the 60's

      The code was developed in the 60's. It (the code) is used today to drive a statistical website.

      --
      I am not a crackpot.
    6. Re:We Stand On The Shoulders of Giants by TapeCutter · · Score: 2, Interesting

      How long a legacy system lasts is decided by accountants.

      The thing with a huge legacy system such as the airlines use is it's stability, they go by the rule "if it works don't touch it". I worked on a large dispatch system for a telco, the back end was HPUX/C that had been ported from FORTRAN and been in (limited) production at some other telco for a few years (they bought a snapshot of the source code), the central route planning and dispatch algorithim was similar to that used by the airline systems.

      Our job was to write the client (win3.1), the comms (9600bps on a clear day), and the transaction manglers that connecetd the back-end to the mainframes housing the customer databases, billing, materials, ect...the first live pilot of 12 servicemen took several executives, 4 on-site programmers, a back-end team, numerous phone calls and 3 hours before all 12 servicemen had their first job for the day (they got through less than a third of their normal workload that day). It took ~2years of piloting with 200 users and then carefull ramp-up before the system could compete with the old fashioned pencil and paper worksheet that serviced the other 8000 users.

      The reason legacy systems are surrounded by a fortress of red-tape that requires an "act of god" before anything is changed: The telco replaced 600 regional depots with 30 small dispatch centers, a $100M investment in mobile hardware and custom software enabled $600M in real estate sales (circa 1993-2000). After the sell-off we became a legacy system in our own right when the front end was replaced with mobile phones pre-installed with browsers. After installing a transaction mangler to connect our comms to a web server, the back-end was wrapped in red tape and the development and maintenance teams were disbanded, AFAIK it is still running.

      The corporate approach to legacy systems is similar to the high level "functional programming" that Backus advocated but the driver is profit and predictibility, elegance and efficiency are "nice to have's". The underlying algorithims for these kind of systems comes from OR and have remained largely unchanged since the second world war. Where is the profit in replacing what IBM euphemistically calls a "functionally stable application" when competitors with new systems are only marginally more efficient at best?

      --
      And did you exchange a walk on part in the war for a lead role in a cage? - Pink Floyd.
  6. The Tombstone by Nerdfest · · Score: 5, Funny

    GOTO END or , for those that believe in reincarnation: GOSUB END

    1. Re:The Tombstone by Anonymous Coward · · Score: 4, Funny

      Old programmers don't die. They just GOSUB without RETURN.

    2. Re:The Tombstone by sconeu · · Score: 2

      Wrong language. it's CALL END

      --
      General Relativity: Space-time tells matter where to go; Matter tells space-time what shape to be.
  7. ...viewed as Backus's apology for creating FORTRAN by _Hellfire_ · · Score: 3, Insightful

    I understand the context in which the word "apology" is being used (as in "justification"), but I had to laugh at the semantics of "apologising for FORTRAN".

    82 is a good innings. No matter what you think of FORTRAN as a language, I think it's safe to say that it, and later some of the other really early languages advanced computer science greatly during its infancy. We have a lot to thank Backus for.

    --
    "And then I visited Wikipedia ...and the next 8 hours are a blur..."
  8. Farewell John by LizardKing · · Score: 5, Insightful

           PROGRAM FAREWELL_JOHN
           IMPLICIT NONE

           PRINT *, 'Farewell John W. Backus'

           STOP
           END

    *
    * End indeed ...
    *

  9. It's a hoax by Bastard+of+Subhumani · · Score: 3, Funny

    Nothing on Netcraft yet.

    --
    Only three things are certain; death, taxes, and apocryphal quotations - Ben Franklin.
  10. FFS a person died... by Zapotek · · Score: 3, Insightful

    ...you insensitive clods!!

    Show some respect instead of making lame FORTRAN jokes...

    1. Re:FFS a person died... by Anonymous Coward · · Score: 2, Insightful

      I don't mean to be insensitive, but a lot of people die every day. Why should I stop my daily routine for just one?

    2. Re:FFS a person died... by solevita · · Score: 3, Insightful

      I don't mean to be insensitive, but a lot of people die every day. Why should I stop my daily routine for just one?
      Exactly. Mocking FORTRAN is a mark of respect. We're much more insensitive to all those people who die and and don't mentioned, especially if it's the result of something easily fixed, like providing a supply of clean drinking water. A fair few people due to preventable causes whilst I was typing out this post; think about that you insensitive clod.
    3. Re:FFS a person died... by Anonymous Coward · · Score: 5, Insightful

      Just because we're not openly weeping into our morning coffee does not mean we do not respect the talent and achievements of the man. I hate this attitude that death has to be seen as a sad or sorrowful time. If anything it should be a time to remember the person and their achievements; exactly what is happening here. The only time grief is called for is if you personally knew John Backus and will miss his company. Anything else is likely false grief, generated by some weird psychological conditioning that modern society has pushed on us that tells us we must grieve for people we do not know (See also: Princess Diana)

    4. Re:FFS a person died... by Anonymous+Brave+Guy · · Score: 2, Insightful

      You don't think that the number of people here making and/or understanding the jokes about FORTRAN says more about the significance of Backus's contributions than any fawning obituary column ever could? Contrary to another poster's comment, I think most death really is sad, but since I didn't know Mr Backus personally, I prefer to reflect on what he contributed to society as a whole instead of displaying false grief.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  11. Be afraid, be very afraid by vivaoporto · · Score: 5, Insightful

    With both the lack of interest and the distortion of the original goal, Computer Science as we know may be dying with the elders. Computer Science originally had nothing to do with computers (as in personal computer) per se, but with the science of computation, optimal algorithms for pure math problems, etc. Actually, it was nothing but a branch of Math. The way computer science is being dealt with nowadays, with disdain, lack of interest and with people thinking about it as a tool to put another "screw tighter" professional in the market, soon we may run out of real breakthroughs like the ones those genius created to pave the yellow brick road we run over nowadays.

    1. Re:Be afraid, be very afraid by tinkertim · · Score: 2, Insightful

      With both the lack of interest and the distortion of the original goal, Computer Science as we know may be dying with the elders. Computer Science originally had nothing to do with computers (as in personal computer) per se, but with the science of computation, optimal algorithms for pure math problems, etc. Actually, it was nothing but a branch of Math. The way computer science is being dealt with nowadays, with disdain, lack of interest and with people thinking about it as a tool to put another "screw tighter" professional in the market, soon we may run out of real breakthroughs like the ones those genius created to pave the yellow brick road we run over nowadays.


      We're also out of good original movie plots, song lyrics and lots of other stuff too. Has absolutely nothing to do with TFA or your comment, but I figured I'd mention it.

      Give things a little more time and widen your sampling before feeling the doomsday of stagnate science is upon us. Developers will always develop what people demand, and right now they are demanding web 2.0 social networking web sites and other things that more 'serious' users would deem trivial and wasteful. By that token all development that goes into these trivial things could also be considered trivial.

      I do agree that we'll hit a lull, and I'm also inclined to feel that which yields no productive lasting result is relatively useless (games, mindless surfing, etc).

      About 15 years ago the whole world started to open up to everyone in it. We [humans] are a small world network (as far as the definition goes), consider each person being a node and consider the need for them to begin trusting eachother for that network to be efficient and productive.

      The fact that this trust is forming through the (technology wasting) we both bitch about is nothing less than amazing. We will get out of that 'lull' sooner or later :) In effect, while a bit maddening, you're watching a network self-improve simply because it must. Nothing trivial about that.

      Relax, a little :)
    2. Re:Be afraid, be very afraid by dk.r*nger · · Score: 2, Insightful

      With both the lack of interest and the distortion of the original goal, Computer Science as we know may be dying with the elders. Computer Science originally had nothing to do with computers (as in personal computer) per se, but with the science of computation, optimal algorithms for pure math problems, etc. Actually, it was nothing but a branch of Math. The way computer science is being dealt with nowadays, with disdain, lack of interest and with people thinking about it as a tool to put another "screw tighter" professional in the market, soon we may run out of real breakthroughs like the ones those genius created to pave the yellow brick road we run over nowadays.


      Naa. I'm sure back when car became widely available and used, some of the "elders" complained that now everybody is a "driver", and they don't even know the intrigate details of internal combustion.

      Computer science is alive and well, there are merely two things happening that disorts the view:
      - "Original" CS has been rolled back into math. You don't do computational heavy math without computers anymore, so why keep CS as a seperate field? Heavy computation is also interesting in lots of other fields, especially medicine and biology.
      - "New" CS is a trade. Programmers, developers, project managers etc.

      There's plenty of novel ideas and innovation out there. Look at SUNs Sparc T1, IBMs Power Cell (hardwarewise) and stuff lige virtualization (both machines (xen, vmware) and programs (java, .NET)). Web Services, the semantic web? Search engines? New language features, like LINQ?

      But if you believe that C++ was the height of evolution, well, then, yes, CS is dead.
  12. BNF by mrogers · · Score: 5, Funny

    Backus is also the B in BNF. Many will mourn his parsing.

  13. The mentioned Turing Award lecture by Bromskloss · · Score: 5, Informative
    --
    Swedish plasma phys. PhD student; MSc EE; knows maths, programming, electronics; finance interest; seeks opportunities
  14. No need to apologise by jandersen · · Score: 2, Insightful

    ...Backus's apology for creating FORTRAN...

    (yes, yes, I know, he's no apologising in the usual sense; this is a play on words, or a pun, as it is also known)

    Still, FORTRAN was and still is one of the great programming languages. There are many languages that offer better features and are much suitable for general usage, but there's huge number of programs written in FORTRAN, and many in science still prefer it to C/C++; FORTRAN is very well suited for numerical calculations, which is after all what is was made for.

    1. Re:No need to apologise by Just+Some+Guy · · Score: 2, Informative

      (yes, yes, I know, he's no apologising in the usual sense; this is a play on words, or a pun, as it is also known)

      Not quite:

      Source: WordNet (r) 1.7
      apology
      n 1: an expression of regret at having caused trouble for someone; "he wrote a letter of apology to the hostess"
      2: a formal written defense of something you believe in strongly [syn: apologia]

      (this is another accepted meaning of a word, or an alternate meaning, as it is also known)

      --
      Dewey, what part of this looks like authorities should be involved?
  15. rest in peace by dario_moreno · · Score: 5, Informative

    Maybe it's because I was breastfed with BASIC from a very young age, but when I was forced to learn FORTRAN to work on legacy code I discovered after some initial, computer science taught disgust, that it was really the best way to express myself in code, better than with anything else, and I owe my present university position to FORTRAN because it made me so productive. I guess it was because the language was conceived by engineer, scientists oriented types, and not by formal logic adepts or grammar nazis. I still teach FORTRAN to this day, using F90/F95 in all its power, and MATLAB-like exposed students tend to enjoy it because they can develop simple and efficient numerical codes much faster than with anything else; some of them found positions thanks to it. The trick is to use FORTRAN for what it's for (numerical arrays, heavy linear algebra, easily parallelizable scientific computing) and not strings or files manipulation, linked lists (LISP) , graphics or system : for that there is C(++), and tons of libraries. If the code grows larger than 10 000 lines, very strong discipline is necessary, and that's where true OO can be pertinent. In scientific code FORTRAN tends to be 20% faster than the best possible C++ implementation because the grammar is so simple that compilers tend to understand better the code and can vectorize or optimize it much farther than C ; and there is much less overhead than with C++ because the objects are simpler to manipulate. Major code used in the industry (Star-CD, Gaussian for instance) is still written in FORTRAN for those (and legacy) reasons.

    --
    Google passes Turing test : see my journal
    1. Re:rest in peace by justthinkit · · Score: 4, Insightful

      Mod parent up one more, he deserves a +5. As an engineering student in the later 70s/80s, Fortran was all I knew or cared to know. My one Comp Sci course was beginning Fortran programming -- the whole thing is probably learnable in a few hours today. My final year thesis was a 6000 line Fortran simulation used to determine the feasibility of building a "Two Stage Spouted Bed Coal Pyrolysis Plant" in China (it was).

      95 percent of the people who programmed in the early years would never have done it without Fortran.

      It is easy to criticize, as many other posts have done, something invented half a century ago. Personally, I miss being able to use Fortran (or a procedural basic) to solve today's problems -- we've given ourselves over to the machine's favorite language (C) while we pat ourselves on the back for how smart we are now (as we create write-only code).

      I wish this had become more popular. There's still time.

      --
      I come here for the love
    2. Re:rest in peace by Wormholio · · Score: 5, Insightful

      I too still teach my students (in physics and astronomy) to use Fortran, for many of the reasons listed above. While it may also be useful for them to go on to learn other languages, their primary focus is on the physics problems they need to solve and the numerical algorithms needed to help them do that. Fortran makes it easy for them to get started and then focus on the calculations, not on grammar or philosophy.

      Fortran has been criticized because you can write "spaghetti code" or other crap, while other languages supposedly protect you from the mistakes you can make in Fortran. But you can write crappy code in any language (including "spaghetti classes"). I teach my students to write with good style. They know their code has to be clearly understandable not just to the machine but also to someone else who is familiar with the goal of the code but not the details. Trying to enforce good style through grammar is misguided at best, just as it is in writing in general. Developing good style is a personal, ongoing process for writing anything, including good code.

      --
      "Education is not the filling of a pail, but the lighting of a fire." -- William Butler Yeats
    3. Re:rest in peace by dario_moreno · · Score: 2, Interesting

      there was an article on that in "computers in science and engineering" a few years ago. I do this experience every year with my students and it still holds. Just have a look at the generated assembler of a commercial Fortran compiler with optimization turned on and compare it to the same code in C and especially C++ and look at register use, number of FLOP generated, use of vectorized extensions, complex instructions and so. It is all the truer with all hardware optimization of nowadays. Of course if you spend 10 times as much time optimizing formulas and assigning variables to registers, your C code can be as fast as optimized Fortran ; we are speaking about straight-to-the point code. I know from hardware counters that my code runs at maybe 10% of theoretical machine efficiency ; but I do not have a few years to optimize everything.

      --
      Google passes Turing test : see my journal
    4. Re:rest in peace by Threni · · Score: 3, Insightful

      > You mean there's life after forms, databases, and web 2.0? ;-)

      I'm sure there are millions of HTML hairdressers out there who don't know the first thing about real programming.

  16. ``apology'' by majiCk · · Score: 2, Informative

    I understand the context in which the word "apology" is being used (as in "justification"), ...

    Actually, I'm pretty sure they do mean ``apology'' as in ``sorry, world''. Backus's work on FP was all about getting past the ``word-at-a-time'' assignment-based paradigm popularized by FORTRAN (the ``von Neumann bottleneck''), and moving on to more expressive algebraic programming techniques, today referred to as functional programming. Check out his Turing award lecture -- it's a great read!

  17. Re:RIP and thank you by Mr_Tulip · · Score: 4, Insightful

    Old programmers never die, they just GOSUB with no RETURN

  18. What's with the flaming? by Wizard052 · · Score: 4, Insightful

    What's so wrong with FORTRAN? From the sound of things, it's like the guy committed a crime or something...if it was so 'destructive' or whatever then how come it got so popular? Or did it? Why did so many choose to use it?
    And for that matter, what IS 'constructive'? Maybe C++? And whatever that is, it wasn't influenced in any way by FORTRAN?

    Just evolution, people... the TV scorning the radio as backward!?

    1. Re:What's with the flaming? by MichaelSmith · · Score: 2, Interesting

      What's so wrong with FORTRAN?

      Well nothing really. It was a good, early attempt. Its mistake was in surviving too long.

      From the sound of things, it's like the guy committed a crime or something

      Yeah I have been one of the worst offenders in this article. Sorry about that. He was obviously an accomplished guy and I am sorry he is gone.

      ...if it was so 'destructive' or whatever then how come it got so popular?

      Hard to explain. It attracted a certain, lets say, blue collar group of programmers. People who like all their identifiers to be called MODSTR and ARGSET. Lisp was the gay, lower case language. FORTRAN was for REAL MEN who type REAL CHARACTERS. These were scientists who wanted to knock out quick, fast and dirty code. It was the perl of its day, and like perl, got used for things it should have not been used for.

      Or did it? Why did so many choose to use it?

      Something about the compilers which were built for it got it entrenched in the performance computing field. To this day people will claim that fortran code runs faster than anything else for pure numerical applications. I would be surprised if it was still true, though.

  19. obligatory by marafa · · Score: 2, Funny

    was he related to A Backus?

    --
    _ In Egypt Networks: Network Solutions with a Twist
  20. Just to give people something to think aboout. by leviccampbell · · Score: 2, Insightful

    If Mr. Backus hadn't developed fortran, would we be as advanced scientificaly as we are now?

    --
    "We the unwilling, lead by the unknowing, have been doing the hard with little for so long that we are ready do do the i
  21. Re:What do you know? by LeninZhiv · · Score: 2, Funny

    Indeedandhi s i nsight fulidea ofre mov nig thesigni ficanc e o f s p aces be tweenwo rdsw as real lyah eado fits time. :-)

  22. Re:What do you know? by h2g2bob · · Score: 4, Insightful

    I do, in fact my main project is not only in FORTRAN but in standards compliant fixed form FORTRAN 77, huzzah!

    Compared to more modern languages - by which I mean C - it's bad. There are plenty of things which drive me nuts - the need to define things a million times, the lack of any sane way to group variables.

    But compared to what was around when it was made, it was a leap forward (assembly, anyone).

    Also, lets not forget that it was made for... yes, that's right: punched cards! It has a maximum line width because of this (even if it's not on punched cards). This is, I think, one of the main reasons why FORTRAN encourages you to write code like it's in a big dense block (the lack of spaces, the inline looping of variables).

    FORTRAN still has good use among physics labs, partly because there's a lot of physics-specific code that is made for it, and partly because everybody's already used to it. And it has been updated (F95) to include all the modern features you could want.

    Still, you'd need to be mad to use it. Which is why I do.

  23. Remember him not for FORTRAN by Edward+Kmett · · Score: 5, Interesting

    I find it somewhat troubling that in this article John Backus is remembered primarily for the genie that he tried to put back in the bottle.

    FORTRAN was utilitarian and procedural and good at enabling engineers and scientists to get work done. However, the problem with FORTRAN is the imperative pattern of though that it imposed led us to tell the computer a precise sequence of steps to accomplish each task. It doesn't offer information on dependencies, simply a "go here, do that" sequence of instructions. Imperative programs are inherently hard to reason about in terms of global state and effects and as written tend to be subject to off-by-one errors.

    Backus saw this in 1978! See http://http//www.stanford.edu/class/cs242/readings /backus.pdf.

    His insight spawned a great deal of the interest in functional programming languages. It was been credited by Paul Hudak of Haskell fame http://portal.acm.org/citation.cfm?doid=72551.7255 4 (ACM membership required) (summarized here http://lambda-the-ultimate.org/classic/message4172 .html) and others as really helping to turn the tide and kept functional programming languages from being snuffed out.

    A lot of people don't see the point, having never programmed in a functional programming language like Haskell or ML. However even those people see dozens of cores on the horizon and wonder how they are going to deal with the debugging issues associated with all of the threads to keep those processors churning.

    Functional programming offers an alternative viewpoint that is arguably much better suited to handle multiple CPUs working on large datasets. A case for this was recently reiterated by Tim Sweeney of Epic Megagames fame who said "in a concurrent world, imperative is the wrong default!" http://www.st.cs.uni-sb.de/edu/seminare/2005/advan ced-fp/docs/sweeny.pdf.

    Haskell has brought Software Transactional Memory (STM) into play offering an alternative approach to traditional mutexes and locks that is compositional in nature unlike locking models. This is an approach that isn't readily emulable in an imperative setting because of the lack of guarantees about side effects. http://research.microsoft.com/~simonpj/papers/stm/ index.htm.

    These are solutions to real problems that we are experiencing today, not some academic sideshow, and they arise from a school of thought that he helped bring a great deal of attention to.

    If you want to do something to remember Backus take the time to learn OCaml or Haskell or even just take the time to learn how to effectively use the map and fold functions in Perl, PHP or Ruby.

    It is his willingness to turn his back on what was percieved as his greatest work when confronted with a better idea for which I will remember him and I am a better programmer today for having learned what I could from his ideas.

    --
    Sanity is a sandbox. I prefer the swings.
  24. Backus-Naur Form by mwvdlee · · Score: 2, Interesting

    The funny thing about Backus-Naur Form is that Naur himself says it should be Backus Normal Form, like it was before Naur used a slightly modified version of it.

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  25. FORTRAN greatest time save since assembler by DollyTheSheep · · Score: 5, Insightful

    First there was machine language. You hand coded all the little ones and zeros manually to get your machine code. Then came assembler which was a great time saver with all its mnemonics, registers and loops.

    The next step was a real higher-level language: FORTRAN. Its estimated, that this meant a time saving ratio for programmers of 10:1 against assembler. This rate of improvement was never reached again. All other improvements in programming are only incremental compared to that.
    1. Re:FORTRAN greatest time save since assembler by be-fan · · Score: 2, Insightful

      The improvement from FORTRAN to a modern Lisp (circa 1985) is not incremental at all. Relative to assembly, FORTRAN abtracts registers into variables, and branches into loops and functions. Additionally, it automates static storage layout. Relative to FORTRAN, Lisp additionally abstracts memory into objects, machine arithmetic into actual arithmetic*, and simple functions into higher-order, polymorphic functions**. Moreover, it automates dynamic storage management, and abstracts large-scale code patterns with macros. Add all those together, and the delta betweeen Lisp and FORTRAN is easily as large as the delta between FORTRAN and assembly.

      *) Ie: the integer type in FORTRAN or C isn't an integer in the mathematical sense, but a finite field. Addition of integers isn't real addition, but modulo addition. Division over integers isn't real division, its truncation.

      **) In FORTRAN functions are primitives, while in Lisp functions are first-class values. Moreover, until FORTRAN 90 functions could not be recursive.

      --
      A deep unwavering belief is a sure sign you're missing something...
  26. New meme by TuringTest · · Score: 2, Interesting

    I can see a new trend of "Goodbye cruel world" programs replacing the "Hello world" equivalents, as designers of programming language pass away.

    --
    Singularity: a belief in the "God" idea with the "demiurge" relation inverted.
  27. We've lost a wonderfully nice guy by TwobyTwo · · Score: 5, Interesting


    When I was in my early 20s and had been programming only a few years, and John was already a legend and IBM Fellow for his work on FORTRAN, I had the pleasure of meeting him informally a few times. You would have thought our positions and experiences were nearly the same. He was always as engaged and delighted with younger people like me as with other giants of the computer field, some of whom were standing right with us at those get togethers (Jim Gray comes to mind). John was extraordinarily decent, kind, and down-to-earth, and he will be very much missed.



    I think some of the wise guys/gals on this list are missing the point of the FORTRAN team's contributions. It wasn't that FORTRAN was the perfect language. To some degree, that wasn't even the goal. Quoting from an an article by Backus (full text is available only to ACM subscribers, unfortunately):

    "To this day I believe that our emphasis on object program efficiency rather than on language design was basically correct. I believe that had we failed to produce efficient programs, the widespread use of languages like FORTRAN would have been seriously delayed.".


    At the time the FORTRAN work was done, people didn't believe that a compiler could produce code that was fast enough. If you go back to the early references on FORTRAN you'll find that they implemented optimizations that were still considered sophisticated 15 years later. The difference is: the FORTRAN team did it at a time when nobody had done it before. Furthermore, they did it on an IBM 704 that would be too weak (if not too small!) to power a wrist watch today. Its core storage units were tens of cubic feet in size, and each held 4K 36 bit words, or just over 32K bytes in modern terms. Even the "high speed" drum storage units (like a disk, but with no seeking needed) held only 16K of those 36 bit words. On this machine, they built optimizations that were considered sophisticated even decades later, when machines had gotten much bigger and faster. Quoting from that same article:

    "It is beyond the scope of this paper to go into the details of the analysis which section 2 [I.e. the optimizer] carried out. It will suffice to say that it produced code of such efficiency that its output would startle the programmers who studied it. It moved code out of loops where that was possible; it took advantage of the differences between rowwise and column-wise scans; it took note of special cases to optimize even the exits from loops. The degree of optimization performed by section 2 in its treatment of indexing, array references, and loops was not equalled again until optimizing compilers began to appear in the middle and late sixties."

    The computing field has lost someone very special.

  28. Yup, it's the same Chomsky by puppetluva · · Score: 4, Informative

    In case you were wondering, the Chomsky of the "hierarchy of formal languages" is the same Noam Chomsky that you probably know of in a political context.

    Check out the Wikipedia page on him. . . agree with his politics or not, he's had an interesting career in linguistics. . .

    1. Re:Yup, it's the same Chomsky by ajs · · Score: 2, Interesting

      Linguists, in general, seem to have an interesting way of looking at the world. Chomsky has a way of looking at a political situation in a unique way and formulating an opinion that's not widely held (in fact, one that typically annoys all extremes of the political spectrum). Right or wrong, it's an interesting process.

      Larry Wall has a similar outlook (though his politics likely diverge heavily from Chomsky, I dunno). He has that linguist's way of looking at theoretically opposing points of view and rationalizing them against each other in a very logical way. It's a kind of fun process to watch, and it makes me wish I had that knack.

      Back to Backus: he will be missed. His work in CS was truly ground-breaking, even (especially) where it simply extended the work of others. FORTRAN has a legacy all its own, and the fact that the scientific community still continues to use it to this day is testimony to its power and utility, even if much of it is dated today.

  29. Re:What do you know? by Frumious+Wombat · · Score: 2, Interesting

    Its more modern forms, such as F95, aren't bad at all. All the power of C++ as far as numerics goes, a consistent and sane syntax (complex variables and operations are just there, not reimplemented by every programmer in their own unique way), modern control and data structures, and easy to read. (Translation: doesn't look like line-noise )

    It remains popular due to backwards compatibility, and the ease of writing numeric code with it.

    As for other uses, I've seen cgi-bin scripts written in F77, and a million-line massively-parallel quantum-chemistry package in an object-oriented fashion using F77. In the hands of modern compilers, it is an amazing language.

    --
    the more accurate the calculations became, the more the concepts tended to vanish into thin air. R. S. Mulliken
  30. LISP is a "centenial language" too by peter303 · · Score: 3, Informative

    LISP is about to enter its sixth decade too, is still used by advocates, and had its heyday in computer culture. I believe its inventor John McCarthy is still around. MIT used to use LISP as its required CS training language from the 1960s until 2006.

    I call "centennial languages" languages that were invented near the beginning of the computer age as, still used a fair amount, and probably will be around until their 100th birthdays. Some languages like ALGOL, OL/I, and even PASCAL have faded.