Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created July 9, 2017 01:59
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 kunigami/323fe8fa6dbdd9d6a9aa703e69502c7c to your computer and use it in GitHub Desktop.
Save kunigami/323fe8fa6dbdd9d6a9aa703e69502c7c to your computer and use it in GitHub Desktop.
(* Before *)
| value ->
let forcedValue = Lazy.force value in match forcedValue with ...
(* After *)
| lazy forcedValue -> match forcedValue with ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment