Slashdot Mirror


An Interview With F# Creator Don Syme

OCatenac passes along an interview with Don Syme, chief designer of F#, which is Microsoft Research's offering for functional programming on the .Net platform. Like Scala, which we discussed last fall, F# aims at being an optimal blend of functional and object-oriented languages. "[Q] What is the best program you've seen written in F#? [A] I've mentioned the samples from F# for Scientists, which are very compelling... For commercial impact then the uses of F# in the finance industry have been very convincing, but probably nothing beats the uses of F# to implement statistical machine learning algorithms as part of the Bing advertisement delivery machinery. ... We've recently really focused on ensuring that programming in F# is simple and intuitive. For example, I greatly enjoyed working with a high-school student who learned F#. After a few days she was accurately modifying a solar system simulator, despite the fact she'd never programmed before. You really learn a lot by watching a student at that stage."

53 of 267 comments (clear)

  1. There going to run out of musical notes soon... by Wingman+5 · · Score: 4, Funny

    Will D flat be the same language as c#?

    1. Re:There going to run out of musical notes soon... by Anonymous Coward · · Score: 5, Funny

      In music theory, F# is as far as you can get from C.

    2. Re:There going to run out of musical notes soon... by bipbop · · Score: 3, Informative

      Now that would be unjust.

  2. F is for Fun? by gad_zuki! · · Score: 4, Funny

    Sure, when everything works out. Something tells me F will mean something completely different when youre getting compiler errors or crashes.

    1. Re:F is for Fun? by Dirtside · · Score: 4, Funny

      F# is an abbreviation -- the language's full name is F#$@!

      --
      "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
  3. Checkbox marketing by Anonymous Coward · · Score: 4, Insightful

    F# for Scientists ... F# in the finance industry ... F# ... statistical machine learning algorithms ... solar system simulator

    and the emotive language and buzzwords

    compelling ... impact ... convincing ... advertisement delivery machinery ... simple and intuitive

    *yawn* unconvinced.

    1. Re:Checkbox marketing by Ethanol-fueled · · Score: 2, Interesting

      You forgot "paradigm". My last shop was a C# shop. Never ceased to amaze me how the programs would prompt for the model number and freeze, then crash and and require a manual(Windows ctrl+alt+delete, of course) process kill before the operator had to enter the model number again.

      The impression given to the layman is that Microsoft technologies continue to enable idiocy. Hell, the code I dealt with at Java on Oracle shops was slow as fuck but at least it worked the first time around.

    2. Re:Checkbox marketing by shutdown+-p+now · · Score: 3, Informative

      If you don't want the marketing drivel, then the short story is that F# is ML for .NET. If you know what that is, you should already know what it's good for, and when you'd want to use it. If you don't know what it is, then you might want to start from the basics.

    3. Re:Checkbox marketing by shutdown+-p+now · · Score: 3, Interesting

      being Microsoft it will probably not run on 95% of our compute clusters

      F# specifically supports Mono on Linux and OS X. I somehow doubt it's good enough for clusters, though...

      In any case, I don't think that's the intended use case. It's not for computationally intensive stuff - you'd still want Fortran or C/C++ there, as you've rightly noted - but for the kind of computations that you do on your own box. These guys provide some supplement tools.

      That said, it can still be used to massively parallelized, scalable tasks, since it has some stock parallelization primitives, and can also use .NET Parallel Framework (which is task/taskgroup-based automatic scheduler on lower level, and automatic parallelization of queries and transforms over sequences on higher level).

      Therefore... Why should I care? What does F# do, for me as a scientist, that I should invest my time into it?

      Do you, as a scientist, use Haskell or ML? If so, you can think of F# as the same kind of thing, but with first-class IDE and debugging support, and ability to quickly throw together UI frontends in WPF (it's pretty good for rather advanced visualization).

    4. Re:Checkbox marketing by ClosedSource · · Score: 3, Insightful

      Somebody wrote a bad program in C# that crashed and somebody else wrote a better program at another company on Java and it didn't crash. What more evidence does one need that .Net is crap?

    5. Re:Checkbox marketing by mangu · · Score: 2, Funny

      What more evidence does one need that .Net is crap?

      Anecdotes aren't evidence, but their weight increases with decreasing distance. If your anecdote were about camel traders in some Central Asia mountains I would never give it a second thought.

      Computer programming, OTOH, is closer to home, it's not just *one* bad program in C# that crashes, it's everyone who works with computers that has come across one badly written .NET system after another.

      There must be something wrong about the whole .NET architecture, maybe it's not the system itself, maybe it's because it attracts too many people who do not have what it takes to become a great programmer, but the proportion of .NET systems that are buggy seems to be much greater than in other platforms.

    6. Re:Checkbox marketing by DannyO152 · · Score: 2, Informative

      F# as the same kind of thing, but with first-class IDE and debugging support

      Aha! Right there is the problem. The first-class IDE is Windows-only.

      I do use Haskell. TextEdit and emacs work well enough. May I suggest that a good REPL, strong type system, and pure functional style mean that debugging is a different process than watching memory locations change value for imperative languages. I've checked out OCaml, but its notation - call me shallow - meant I went back to lisp and shortly after embraced Haskell. I'm also told the book I used as guide, "Practical OCaml Programming," is notoriously poorly written.

      Since F# borrows heavily from OCaml for notation, its superior use case is for developing on Windows for Windows using a functional style and that really implies that the clients are going to be running a desktop application. While no language that actually does something can be totally pure, I thought some of F#'s FP goodness was undercut via the interaction with DLLs and .net objects. On the other hand, it does resolve the foreign interface problem that non-C languages have, but pretty much only for Windows.

      As a practical consideration, over the years, there have been many periods of significant length when mono and fsharp would not compile on OS X via Macports. No complaints: everyone's a volunteer and I'm hitching a free ride. But, at some point one stops paying attention. Looking at the state of the art today, scala and clojure offer nice integration with existing code (read gui widgets) and as they rely on a jvm are cross-platform. The one little ugly part to those implementations is that the jvm cannot do automatic tail recursion, so the programmer has to be aware of stack issues and use workaround functions for recursion.

    7. Re:Checkbox marketing by msclrhd · · Score: 3, Interesting

      So F# is for scientists and the finance industry, yet it cannot run on most mainframes (GNU/Linux or Unix), but there is mono that can, but does not work for computationally intensive applications.

      That means that it will not be able to be used for Quantum Mechanical calculations or General Relativity calculations or any other calculation that scientists would like to perform. Nor would it scale to the large amount of real-time transactions that a bank or stock trading company would need to perform.

      So how is F# better than Fortran & C/C++?

    8. Re:Checkbox marketing by dunkelfalke · · Score: 2, Insightful

      I've learned Turbo Pascal as my first language back then in 1991. Currently I develop in C for embedded Linux, but I still like Pascal better because I happen to like comfort better than hardships.

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
  4. .NET Framework by Yuioup · · Score: 5, Interesting

    Last year I wanted to know what all the hoopla was about functional programming. I checked out Haskell, Scala, OCaML and F#. Coming from a Java/Delphi/C# background myself I had to go through it a couple of times before I "got" it. I'm glad I did because I banged out my first production IronPython lambda function on last Friday (yay!).

    I know that MS bashing is popular here on Slashdot, but I really want to take a moment to say that the .NET Framework really is excellent. The ability to mix and match different paradigms and languages in a clean an concise manner which is a joy to program in.

    Yeah I know patents bla bla mono bla bla Novell bla bla Miguel bla bla.

    1. Re:.NET Framework by Paradigma11 · · Score: 4, Informative

      Dr Eric Meijer from microsoft research has given a pretty nice 13 part lecture on functional programming in haskell based on graham huttons book:
      http://channel9.msdn.com/shows/Going+Deep/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1/
      there are also a ton of other videos about f# on channel9 like:
      http://channel9.msdn.com/posts/martinesmann/Don-Syme-FSharp-and-functional-programming-in-NET/
      http://channel9.msdn.com/shows/Going+Deep/C9-Lectures-Dr-Don-Syme-Introduction-to-F-1-of-3/
      or others specifically on asynchronicity and parallelism in f#....

    2. Re:.NET Framework by fredrik70 · · Score: 2, Interesting

      If you like ironpython, check out Boo (http://boo.codehaus.org/) statically typed (or dynamic if you like) language which has borrowed most of the best features from from python.

      --
      if (!signature) { throw std::runtime_error("No sig!"); }
    3. Re:.NET Framework by Yuioup · · Score: 2

      I was looking for a good solution for automated tasks. The idea is to run tasks on a fixed shedule (like database maintenance, inbox reading and processing, etc...). Where we worked we tried all kinds of solutions (Windows service applications, COM objects, etc...) but nothing really worked.

      When I noticed that in the UNIX world there was something called CRON and it ran something called BASH scripts I basically drew an analogy. What would be a Windows version of CRON and BASH?

      IronPython and the Windows Task Scheduler.

      A wonderful scripting language that can be used to automate tasks. As an added bonus it's backed by the entire .Net Framework.

    4. Re:.NET Framework by daveime · · Score: 5, Funny

      I hope chapter 1 contains directives on when and when not to use fixed width fonts.

  5. The optimal blend... by mandelbr0t · · Score: 2, Interesting

    ...of object-oriented and functional programming languages would be one without any functional perspective. I've learned both, I've managed both, and OO didn't drive me insane. Functional-based programming languages are syntactically inferior to OO ones, just as natural languages have features that make some more primitive than others.

    --
    "Please describe the scientific nature of the 'whammy'" - Agent Scully
    1. Re:The optimal blend... by shutdown+-p+now · · Score: 3, Interesting

      Functional-based programming languages are syntactically inferior to OO ones

      Most likely just the ones that you've seen, and for the tasks you've thrown at them. I wouldn't write a line-of-business application in F#, sure, but I wouldn't write a parser in C# either.

      While we're at syntax - I've yet to see any non-hybrid OO language which has anything matching the power and beauty of classic FP pattern-patching. For any sort of tree processing especially, it's a god send - whereas in OO you have to deal with ugly visitor pattern hack.

      Then also, FP doesn't have to mean "alien syntax", either. Have you seen Scala? It has everything any self-respecting FP language needs to have, yet it's still very much OO-centric, and the syntax is broadly Javaesque.

      To conclude... one of the first two OO languages, and the one to which pretty much all OO languages today owe at least half of their design, is Smalltalk. Coincidentally, it's also a very potent FP language - blocks are nothing but first-class functions, and they were used so pervasively in the language and the standard library that even the most basic conditional statement was actually a method call with two blocks...

      And yet, Smalltalk is considered as one of the most pure OO languages ever.

      Which is to say that OO and FP is really orthogonal, and not at all contradictive. You can have both, and either one is good for something different - so there's no reason not to have both, and get the best of both worlds.

    2. Re:The optimal blend... by MichaelSmith · · Score: 2, Interesting

      Okay everytime this kind of article comes up on slashdot people point to five or six other languages I have never heard of. Now smalltalk is an old language and I have heard of it and you make some good points about what it can do. So why do we have so many unique languages? Is it because people want to start from a clean slate? Surely working on virtual machines and calling standards is just as important.

    3. Re:The optimal blend... by shutdown+-p+now · · Score: 2, Insightful

      So why do we have so many unique languages?

      It's because we don't have a clear idea on which language features are good, and which aren't. If you ask someone (say, me ~), you'll probably get a straightforward reply, but if you ask another guy, he is quite likely to strongly disagree on many major points.

      There are many arguments both for and against dynamic typing, for example. There are similarly many arguments for and against OOP. There are advantages of having code pre-compiled to native, and there are also advantages of having a VM with a JIT compiler. Tracing GC vs manual memory management (+ smart pointers). The list goes on and on...

      Within the static typing camp, there are still unsolved issues with the expressivity of type systems - some believe that typeclasses (Haskell-style) are the way to go, but there are still some unresolved problems there for more complex things. Some want effect typing. Some decry both as overcomplicated, and say that they're overkill, and it's easier to simplify the code.

      Then there are bleeding-edge language features. Do we need STM? Do we even want it - can it be efficiently implemented at all?

      Consequently, you get different languages, depending on which of the above (and many other) points are emphasized. Lately, we're starting to get more "kitchen sink" languages combining all approaches in hope that all of them are useful to one extent or another. F# is actually such a language, in a sense, being hybrid FP/OO (it also has "duck typing" member access, though no means to define true dynamic classes as in Python or Ruby). Scala is even more so.

      Existing languages are also heading in the same direction - C# is a good example of that, starting its life as Java-like OO language, then getting some FP features in 2.0, a major FP'esque facelift in 3.0, and now duck typing in the upcoming 4.0.

      By the way, F# isn't really a new language. The base language is ML, which is over 30 years old now. The specific ML dialect from which F# is derived is OCaml - that one is still in active development, but got started 14 years ago.

  6. Syntax parser. by Ranzear · · Score: 2, Funny

    If someone makes a debugger or syntax checker for it, will it be called 'F#CK'?

    --
    Slashdot: Where opinions are just opinions until you have mod points.
    1. Re:Syntax parser. by shutdown+-p+now · · Score: 2, Funny

      No, it's called Visual Studio, actually.

      Hmmm.....

  7. Why not Groovy? by SuperKendall · · Score: 2

    If you also know Java well, Groovy can also be an excellent tool, and is also useful in production environments.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
    1. Re:Why not Groovy? by shutdown+-p+now · · Score: 2, Informative

      Groovy is not a particularly apt comparison, since it's more like a cross of Java and Ruby - particularly the fact that it's dynamically typed. On .NET, Boo plays a similar role.

      The closest thing corresponding to F#/.NET on Java platform is Scala. It's actually a better language in terms of features, albeit with a slightly different balance - Scala tends to be more concise when dealing with OOP, and more verbose with FP, while F# is the other way around. However, a major difference is that F# has first-class support on .NET (it comes out of the box in Visual Studio 2010, with full IDE support - projects, editing, debugging etc). Scala, on the other hand, is a third-party project on JVM, not backed by any of the major players so far - purely a community project.

    2. Re:Why not Groovy? by Yuioup · · Score: 2, Informative

      I would say of all the functional languages I looked into Scala was the nicest, followed closely by F#.

      That is purely because it was easier to get up and running with Scala on Linux & Eclipse.

      I like to learn new languages using an IDE. When I've learned it well I start hacking away in a text editor.

      My primary IDE for IronPython on my Windows machine at work is vim ;-)

       

  8. Re:never programmed before??? by Mr.+Freeman · · Score: 2, Interesting

    Dunno why exactly this was modded all the way down to -1, he has a good point.

    A child "modifying a program" isn't very spectacular. Any moron with no experience can modify "hello world" to spit out "goodbye world". I'm quite certain that "modifying a solar system simulation" went something along the lines of this:

    Problem 1:
    Part A) Replace the values in the program with the proper values for the orbit of the planets. // This is the time it takes jupiter to revolve around the sun (in earth days)
    int orbit_of_jupiter = 0; // This is the same as above, but for earth.
    int orbit_of_earth = 0;

    void main()
    {
    lots of programming that is NEVER looked at or touched by the student;
    }

    Part B)
    Record your results in the Excel spreadsheet and email it to the teacher. Then print out a copy and hand it in because the teacher isn't quite smart enough to open attachments in outlook.

    I mean, seriously people. When you hear claims of "High school child modifying amazingly complicated programs that take years of know how to write correctly", think about it for a little bit. If it sounds too good to be true then it probably is. If F# were this amazing new language that allowed anyone with no experience to write any program, we'd have heard about it one hell of a long time ago.

    --
    -1 disagree is not a modifier for a reason. -1 troll, flaimbait, redundant, overrated are NOT acceptable substitutes.
  9. Re:Anyone else think is was a .NET Fortran? by hairyfeet · · Score: 2, Insightful

    Just out of curiosity, since you post has done locked up my brain...why exactly would you WANT a "FreeDOS clone optimized for SSD" anyway? DOS is really very tiny, so tiny in fact that even on the most RAM deprived of Kiosks you should have no problem simply loading DOS into RAM. And if you are doing something with a lot of heavy I/Os then DOS probably wouldn't be the first choice anyway.So is this one of those "because it's there" kind of deals, or is there a specific purpose in mind?

    And as for F# if it fits better than other languages for a job I say great. I've always said every language has its place, even the much maligned VB6. For making a basic GUI for a local database VB6 was the best tool IMHO for the job. And if F# is really as simple to pick up as he says maybe F# can become the new teaching language like old VB was back in the day.

    --
    ACs don't waste your time replying, your posts are never seen by me.
  10. It is, kind of by _merlin · · Score: 2, Interesting

    FORTRAN has dug itself into a corner where it survives quite nicely. It's used for mathematical, engineering and scientific libraries. FORTRAN just seems to lend itself to expressing these sorts of problems better. Mind you, the whole program probably won't be written in FORTRAN - any UI code and other glue will be written in C. F# is filling the same niche for .NET - the mathematical and analytic libraries are being written in F# while C# is used for UIs and other glue. So even if it's a completely different paradigm, in spirit it's the FORTRAN of the CLR.

  11. Re:Anyone else think is was a .NET Fortran? by j1m+5n0w · · Score: 4, Informative

    To say a language is "functional" does not mean the same thing as the common usage of the word, which is to say "useful" or "utilitarian", though in my experience with Ocaml, Haskell, and Erlang, they are that as well if you take the time to learn to use them well. Fortran and F# have just about nothing in common.

    The name "functional" is a little confusing, since imperative languages are heavily based on functions as well, though they are not typically used in the same way. For instance, in a functional language it is usually much easier to write functions that compute useful things without causing side effects, such as modification of shared state. They also usually support such features as tail call optimization (which causes certain forms of recursion to require constant rather than linear stack space), closures, the ability to declare functions within other functions, and the ability to call a function with less than its expected number of arguments, yielding a function of the remaining arguments.

    Another common trait of functional languages is the absence of looping constructs, in favor of recursion and library functions like map and fold.

  12. FParsec by shutdown+-p+now · · Score: 3, Insightful

    There's one particular reason to look at F#, and that's FParsec. Parser combinators are just awesome, and don't get me wrong - I like the original Parsec, and Haskell in general! - but its IDE support is minimal, and debugging it is a pain.

    With F#, you get the same awesome tool, but in an environment where you can actually use it for day-to-day jobs - write any parsing code as an F# library using FParsec, and call it from the main body of C#/VB/IronPython code.

  13. Re:Anyone else think is was a .NET Fortran? by shutdown+-p+now · · Score: 3, Informative

    Being an old fuddy-duddy, my first thought that Microsoft was doing a dot NET version of Fortran, but...

    Obvious retort is why?

    I've no idea why you'd want one, but it exists, nonetheless - made by Fujitsu of all things.

  14. Re:Anyone else think is was a .NET Fortran? by shutdown+-p+now · · Score: 4, Informative

    Oh, by the way, Fujitsu must really be into BDSM or something - they also offer COBOL for .NET.

  15. Re:never programmed before??? by shutdown+-p+now · · Score: 2, Insightful

    He was probably modded as troll because, while he may be entirely correct about "marketing droids", the conclusion that "F# stinks" doesn't exactly follow from that - unless he has some specific horror stories to share. Or at least saw the language, and is qualified to judge on its merits (i.e. familiar with similar existing languages).

  16. Re:Not even going to RTFA by shutdown+-p+now · · Score: 3, Informative

    Totally marketing garbage. Man is probably a great guy, with a lousy job. But F#, really? even .NET is ripping off Java.

    I'm not sure I follow. Are you saying that F# is somehow "ripping off" Java? If you mean it's a "rip off" something else, then, well, it's clearly designated as an OCaml derivative, it's not exactly news... but we wouldn't get far if people wouldn't "rip off" the work of others, and build on that. You know, just like Java ripped off C++ and Smalltalk, and JavaScript ripped off Self, and Smalltalk ripped off Lisp, etc...

    If you mean .NET as a whole being a rip-off of Java, then you're late by like 6 years or so - C# 1.0 was for the most part "a better Java" (note the "better" part, however), but since then it has evolved much faster, and Java is struggling to keep pace, "ripping off" C# as it goes. To give a specific example: C# had first-class functions (called anonymous delegates in the language) in version 2.0, released in 2005. Java still doesn't have them, and they will only likely come in Java 7, to be released by the end of this year. To give another example, C# 2.0 and above has generics that Java language designers would call "reified". Java doesn't, and there's no telling when, or even if, it will.

    Microsoft talks about building "ecosystems" but the way they do it, everything in the ecosystem has to have a M$ logo on it. Why can't they just inter-operate and integrate with outside software?

    Uhh, I don't even know where to begin here.

    Here is the C# language specification, if you ever want to write your own C#compiler. Here is the CLI spec - this covers VM semantics, all involved file formats, and the fundamental class library - this is useful for a .NET compiler for any language.

    And third-party languages for .NET do exist in large quantities. One good example is Delphi Prism, which provides full Visual Studio experience, not any worse than what is there for C# out of the box. Then there's Eiffel, Smalltalk, Perl, Fortran, COBOL... IronPython and IronRuby were also outside projects, by the way - their authors got hired by MS along the way because the company was interested in developing dynamic languages on the platform, and, naturally, picked the two most popular ones.

    Libraries are also part of the "ecosystem", by definition and there are tons of third-party ones. I won't even bother giving links as there are too many - google it if you want.

    So, can you explain what you mean by "inter-operate and integrate with outside software" with respect to .NET, if the above is not good enough?

  17. Re:C++ original? by shutdown+-p+now · · Score: 2, Interesting

    Well, C++ templates are unique. I don't know any other language that has a macro facility that pretends to be a generic type system... ~

    Anyway, C++ was not original from language design perspective - it does indeed rip off Simula a lot - but who actually wrote anything in Simula? It was a very niche language, while C++ became mainstream. Most people who used it first saw all those Simula features in C++, and don't really know better. So "according to many developers", the assertion may even be correct...

    It's very similar to how a lot of Java coders genuinely believe that Java was the one to pioneer OOP, and haven't even heard of Smalltalk, much less Simula.

  18. Looks interesting as replacement for Python by otter42 · · Score: 2, Interesting

    I'm going to say something anathema to the /. crowd, but I'm looking into it with interest for replacing Python. I first teethed on FORTRAN, moved to Matlab 10 years lates, and have been using C extensively for the past 2 years. I'm starting into Python as a quick and dirty replacement for Matlab, and am quickly falling into a love-hate relationship with it.

    The love comes from all the cool things that Python can do, for free. Dynamic typing, .append() functionality, etc. It's just awesome.

    The hate comes from the sheer lunacy that is Python syntax. Forced whitespacing doesn't suit my debugging style (why not just have the compiler recognize either whitespace or accolades?); functions names like len() are just, frankly, idiotic (length() is much more readable to beginners, and takes only a few extra milliseconds to type for experienced users); and the way of working with indices is just weird (2:5 means the 2nd, 3rd, and 4th elements, but not the fifth; range(2 5) gives you 2 3 4, but not 5.).

    Python reminds me of many of these incredibly powerful scientific projects that never got used by a non-scientist until it was far too late to make changes. range() is a good example of this, as while it perfectly emulates "for i=2; i < 5; i++", it is NOT what you expect to get when you say, outloud, "I want a range of numbers from 2 to 5". Having contributed to Scilab, I should know as I'm equally guilty of this kind of thing.

    If F# can fill this void, by giving functional programming with functional syntax, I'll probably stop my Python experiments and move directly to F#.

    Although to be honest, I'd love to find a python front end that uses non-insane syntax and then simply precompiles it into python syntax at run-time. Then you don't have the MS, Windows, and .Net ickiness.

    P.S. I'm not looking to start a flame war about force whitespacing. There are really good reasons to like it. All my programs have consistent whitespacing, except when I debug (I like to put debug programming all the way against the margin, that way there's no possibility of ever forgetting it in the code)). However, you can't have it both ways on readability vis-à-vis function names and indices.

    --
    www.eissq.com/BandP.html Ball and Plate System. Amuse your friends. Crush your enemies.
    1. Re:Looks interesting as replacement for Python by shutdown+-p+now · · Score: 2, Interesting

      The love comes from all the cool things that Python can do, for free. Dynamic typing, .append() functionality, etc. It's just awesome.

      You do realize there's no dynamic typing in F#, right? It's very rigidly typed, in fact, more so than C/C#/Java - it won't let you use an int where a float is expected! (it's the price you have to pay for type inference - it doesn't play well with ambiguity)

      The hate comes from the sheer lunacy that is Python syntax. Forced whitespacing doesn't suit my debugging style

      F# is indentation-driven by default, much like Python (actually, more like Haskell, with more subtle rules). You can turn that off, technically, and use explicit semicolons - but that is considered legacy mode, and the community at large shuns it.

      functions names like len() are just, frankly, idiotic (length() is much more readable to beginners, and takes only a few extra milliseconds to type for experienced users)

      FP languages traditionally have terse names - how about the classic foldl and foldr ("fold left" and "fold right")? F# mostly follows suite - the most recent version is a tad more verbose, but you'll still be dealing with things such as Seq.mapi.

      Although to be honest, I'd love to find a python front end that uses non-insane syntax and then simply precompiles it into python syntax at run-time.

      On the whole, it looks like what you're looking for is actually called Ruby.

    2. Re:Looks interesting as replacement for Python by selven · · Score: 4, Interesting

      I agree that Python has some strange things about it, but look at some sample f# syntax from Wikipedia:

      let rec factorial n =
          match n with
          | 0I -> 1I
          | _ -> n * factorial (n - 1I)

      What do those funny characters mean? What's the I after the numbers? Compare to the python one liner:

      def factorial(n): return 1 if n == 0 else n * factorial (n-1)

      That makes sense even to someone with absolutely zero experience in the language.

    3. Re:Looks interesting as replacement for Python by chico_the_chihuahua · · Score: 2, Interesting

      Your example includes some distractions like bigint literals (0I and 1I), and uses pattern matching, which doesn't exist in Python.

      You have to learn the language to be effective, the wikipedia article was showing the F#-onic way of writing it - it's perfectly possible to rewrite this in a more imperative form as:

      let rec factorial n = if n=0I then 1I else n*factorial (n-1I)

      but pattern matching is a key part of the language. The compiler can detect whether all possible pattern states have been caught, which it can't do with if/then/else statements.

  19. Re:never programmed before??? by EsbenMoseHansen · · Score: 4, Informative

    He was probably modded as troll because, while he may be entirely correct about "marketing droids", the conclusion that "F# stinks" doesn't exactly follow from that - unless he has some specific horror stories to share. Or at least saw the language, and is qualified to judge on its merits (i.e. familiar with similar existing languages).

    Looking at the wikipedia articles, I tend to think he has a point. Look at the F# version of the famous factorial program and compare to the Haskell version(s). I think anyone would be hard-pressed to prefer the F# version, but who knows?

    --
    Religion is regarded by the common people as true, by the wise as false, and by rulers as useful.
  20. Re:never programmed before??? by shutdown+-p+now · · Score: 3, Insightful

    F# version is essentially the same as OCaml version. In practice, you will notice that there are a lot of people who prefer OCaml to Haskell even today, and that has to do with quality of implementation. Haskell is a nice language on the paper, but its laziness makes it both hard to implement fast, and insanely hard to debug.

    With F#, you get language on par with OCaml (so less high-level and expressive than Haskell). But you also get the ability to directly call any existing .NET library - no wrappers or FFI declarations needed. Furthermore, you get an IDE with syntax highlighting, code completion, error checking as you type, and debugging.

    Also, keep in mind that most people who get acquainted with F# today aren't familiar with Haskell. In fact, most of them don't even know it exists. They are C++, C# and VB users, who suddenly discover a new project type in VS2010, and are curious as to what this is all about. For them, the basis of comparison will be a typical imperative OO language, not Haskell - and most marketing materials are written with that in mind. It is generally assumed that people who know Haskell can judge these kind of things on their own :)

  21. Marketing? What the? by Puff_Of_Hot_Air · · Score: 3, Informative

    I understand that it is popular to bash anything that burst forth from the loins of Microsoft, but c'mon! This is Don, The Don, this is one hard-core damned brilliant programming dude (for want of a better term). He was single handedly responsible for generics in c# (something I am greatly thankful for in my day to day work) F# is his baby; the guy is passionate about the idea of a real world practical functional language. Sometimes people use emotive language when they are talking about things that they have devoted themselves to for years. Especially when they believe that it could bring functional programming into the mainstream. I have used F#, and personally really enjoy coding with it (and especially the different way in which solving problems in this manner makes you think). Might be a long time before it is excepted into production code though...

  22. It's not Microsoft RESEARCH's offering... by El+Cabri · · Score: 2, Interesting

    ...of a functional language, it is simply Microsoft's offering of a functional language. The former statement sounds like it's one of the dozens of functional languages fostered in academia, for academia to play with. The whole difference here is that, as of Visual Studio 2010, F# becomes a fully productized and supported language in the .NET world. That's really what's exciting for functional language geeks, because never before a real, modern functional language of the generation built in academia in the 90s, like OCaml and Haskell, had such a mainstream backing.

  23. Re:never programmed before??? by EsbenMoseHansen · · Score: 3, Informative

    F# version is essentially the same as OCaml version.

    I don't know OCaml (I have a cursory knowledge of Haskell, which is why I picked that for comparison), but I could read the OCaml version no problem. The Scala version was difficult, but after staring at it for a bit I understands what it's getting at (especially the _ syntax is unnecessary obtuse). I still think F# is the worst of the lot. Big disclaimer: I have only looked at the factorial example. So this is sort of criticism based on "Hello World" snippets. I'm just saying that the poster far above might actually know what he is talking about,.

    --
    Religion is regarded by the common people as true, by the wise as false, and by rulers as useful.
  24. Time to change by thetsguy · · Score: 3, Funny

    WTF#

  25. Re:a fully productized and supported language by the+eric+conspiracy · · Score: 2, Insightful

    There is a basic rule about writing programs - choose not a vendor specific language, and the useful lifetime of your program will surpass the life of your hardware.

    F# is really just an OCaml variant anyway. Why should I buy something that is locked into a particular vendor and OS when I can get the same thing for free and run it on all the systems I own?

    This article smacks of marketing to developers too much for me to feel comfortable with it... ok for Microsoft tards but not for people who haven't sold their souls.

  26. Re:Functional languages and recursion by ascari · · Score: 2, Funny

    Why are most programmers uncomfortable with it?

    Possible because:
    n1=1
    n2=2
    n3=6
    n4=24
    n5= "Segmentation fault. Core dump"

    What can be done to break this cycle?

    Try this:
    #define "Segmentation fault. Core dump" 120

  27. Re:Anyone else think is was a .NET Fortran? by johnlcallaway · · Score: 3, Interesting

    Advanced??? Changed maybe. 30 years ago I taught myself BASIC from reference manuals in a few hours, enough to write a quadratic equation graphing program for my calculus class for extra credit. My second program was a password cracker so I could get higher priority on the university computer. I've modified code in languages that I had no experience in without any manual just by looking at syntax. So someone taking a few days to learn a programming language and modifying a planet simulator isn't all that impressive for a language ... they just found someone that learns quickly. I'm impressed in the person that picked it up, not the language. It mostly comes down to understanding if/then/else logic, loop constructs, and how to call methods after you learn syntax. Learning these constructs isn't too difficult, applying them takes a little more.

    So now .. instead of spending a few days learning syntax, and a few months mastering a language, we now take a few days to learn syntax, and YEARS to learn all the calls and libraries that go along with it. My first attempt at C++ resulted in my giving up, not because I didn't understand the language but because I was trying to write GUI programs and didn't have the right book to explain which libraries to use and why.

    Programming tools have definitely advanced. The days of punched cards and line editors like EDLIN are far gone for most programming needs. It's nice that modern languages don't let you overflow arrays anymore or have to deal with pointers.

    The biggest advances in programming??? Compilers, recursion, and object oriented syntax. I've seen far too many 'the next big thing' to get excited over something like this. Remember when C# was supposed to be the next big thing???

    But I'm still using the same if/then/else and loop logic that I did 30 years ago. No matter how much things change, they still stay the same....

    --
    I rarely read replies, it's my opinion and if you thought about your opinion a little more, I'm OK with that.
  28. Re:never programmed before??? by Ornedan · · Score: 2, Interesting

    One can write a Haskell version of factorial that looks pretty much the same as the F# version:

    factorial :: Num a => a -> a
    factorial n =
      case n of
        0 -> 1
        _ -> n * factorial (n - 1)

    This contains similar pattern matching expression, even using the same match-anything-pattern-keyword '_' and some additional polymorphism syntax in the type signature. The type signature could be left out and what's shown is what the compiler would then automatically derive.

  29. Knee-jerk moderation? by ClosedSource · · Score: 2, Insightful

    As one might expect, you can get moderated as Flamebait if you say the same thing about opensource as somebody said about .Net.

    The funny thing is that the moderator missed the point. The AC was mocking the logic of the other poster, not really making a statement about OSS projects.