How to Declare and Define an Long data type variable in F# ?

How to Declare and Define an Long data type variable in F# ?

// AbundantCode F# Tutorials and Code snippets
open System
[<EntryPoint>]
let main argv = 
    //How to Declare and Define an Long data type variable in F# ?
    let longDataTypeVariablle = 10L
    Console.WriteLine(longDataTypeVariablle)
    let retval = Console.ReadLine()
    0 // return an integer exit code

?
%d