Google News
logo
F# - Interview Questions
What is a signature in F#?
In F#, the signature file contains information about the public signatures. Signatures can be of a set of program elements, such as types, namespaces, and modules.
Signature file named as signature.fsi
namespace FSharpPrograms  
  module Arithmetic =  
    val add : int * int -> int  
    val sub : int * int -> int  
Advertisement