Skip to content

Instantly share code, notes, and snippets.

@fpawel
Last active May 29, 2017 16:21
Show Gist options
  • Save fpawel/6d7d99f3b4830a5161527e9cbe2e4faf to your computer and use it in GitHub Desktop.
Save fpawel/6d7d99f3b4830a5161527e9cbe2e4faf to your computer and use it in GitHub Desktop.
The bag of the initialization of F# modules
(* файл File1.fs *)
//module File1
//
//let x1 =
// printfn "x1"
//
//do
// ()
(* файл File2.fs *)
//module File2
//
//let x2 =
// printfn "x2"
//
//do
// ()
open System
[<EntryPoint>]
let main argv =
File1.x1
File2.x2
Console.ReadKey()
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment