How to get F# version number?

f#

Solution

When you start up F# Interactive window in VS, you get something like:

Microsoft (R) F# 2.0 Interactive build 2.0.5.0
Copyright (c) 2002-2010 Microsoft Corporation. All Rights Reserved.

For help type #help;;

> [Loading init.fsx]
> 

which includes everything you need.

To open F# interactive window one can press : Ctrl+Alt+F.

Update (5/16/2018):

Information format seems to have changed a bit in VS 2017. Language version comes in the end :

Microsoft (R) F# Interactive version 10.1.0 for F# 4.1
Copyright (c) Microsoft Corporation. All Rights Reserved.

Problem

I know that VS 2010 has F# 2.0 and VS 2012 - F# 3.0. But how I can get F# version number, for example in F# interactive? Is there some command, for example: `#ver;;`? Thanks.

Original source