Why is ";;" required in F# interactive at the end of a command? For instance, IronPython doesn't require it?

EDIT: When do you put double semicolons in F#? covers most of the historical background

I guess my point was if you are using mostly one-liners in interactive it's cumbersome; however I see the value of ';;' when building functions interactively.

link|improve this question

75% accept rate
3  
because they are different languages with different syntaxes. – artificialidiot Jan 30 at 20:53
feedback

3 Answers

Historically, I believe that this was inherited from OCaml - see http://stackoverflow.com/a/2669731/82959.

link|improve this answer
feedback

How does the compiler know when you want to end your function - both of these are valid

let func() =
    System.Console.Read() |> ignore

and

let func() =
    System.Console.Read() |> ignore
    1

So we need ;; to know where the function ends

link|improve this answer
Arguably the REPL could defer until another top-level statement is entered. – kvb Jan 30 at 21:39
feedback

This is an oversimplified answer.

In F#, if you give a function less arguments than it expects, you get back a new function that fixes the arguments that you gave it. This is called currying or partial application, though I am sure one is more correct than the other.

let f a b = a + b
// f: int -> int -> int

let g = f 10
// returns a new functions that takes one argument
// g: int -> int

g 3 // returns  13

So, if the "let g ..." command was at the interactive prompt, the interactive system wouldn't know if g was missing an argument or not. The ";;" tells the system that you are done with it, and to please give return an answer.

In Python, the arguments are surrounded by parentheses, so there is no ambiguity. That, and there is no syntax for the curried function like there is in the ML languages.

link|improve this answer
I don't think that this is a particularly persuasive argument; if you write the two lines let g = f 10 and 3;; into FSI, the second line is not treated as an argument to f due to the lack of indentation. – kvb Jan 31 at 3:25
feedback

Your Answer

 
or
required, but never shown

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