fszmq


0MQ Version

Displays the version of 0MQ currently being used

1: 
2: 
3: 
4: 
5: 
6: 
7: 
8: 
9: 
#r "fszmq.dll"
open fszmq

let main () =
  match ZMQ.version with
  | Version (m,n,p) -> printfn "Current 0MQ version is %d.%d.%d" m n p
  | Version.Unknown -> printfn "Unable to determine current 0MQ version"

  0 // return code
module docs
module PATH

from docs
val hijack : unit -> unit

Full name: docs.PATH.hijack
namespace fszmq
val main : unit -> int

Full name: Version.main
val printfn : format:Printf.TextWriterFormat<'T> -> 'T

Full name: Microsoft.FSharp.Core.ExtraTopLevelOperators.printfn
val release : unit -> unit

Full name: docs.PATH.release
Fork me on GitHub