Skip to content

Instantly share code, notes, and snippets.

@yodiz
Created September 28, 2020 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yodiz/b2ef75b6a090461971b6bbdb760279b6 to your computer and use it in GitHub Desktop.
Save yodiz/b2ef75b6a090461971b6bbdb760279b6 to your computer and use it in GitHub Desktop.
//LibA.dll 1.0
module LibA =
let helloWorld name = sprintf "Hello there %s" name
//LibB.dll
module LibB =
let helloThere name = sprintf "(Through LibB) %s" (LibA.helloWorld name)
//App
LibB.helloThere "Micke"
//LibA.dll 1.1
module LibA =
let helloRenamed name = sprintf "Hello there %s" name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment