I am currently doing a roster for university about F #. I have a question about the F # interactive console and the F # compiler.
The F # compiler generates Microsoft Intermediate Language Code (MSIL) when compiling an F # source. Then it is translated by the JIT compiler into machine code when the written program is executed.
But what does the F # Interpreter Console do? Does this also mean a line feed F # Code in MSIL, and then JIT, what in machine code? Or does it translate F # -Code directly into machine code?
If he first converts it to IL, then I think there will probably be an IL interpreter, because the JIT compiler only compiles the complete programs. Is not it?
How do you think F # -interpreter processes F # code and translates it?
Hi, Martin
martin
source share