Skip to content

Instantly share code, notes, and snippets.

View gigincg's full-sized avatar
:octocat:

Gigin George gigincg

:octocat:
View GitHub Profile
@hartmut27
hartmut27 / Pipe_Usage_Variants.re
Last active April 22, 2020 14:32
1) GADT, 2) Variants in usage of ReasonML/OCaml pipes
/*
* Variants in usage of ReasonML/OCaml pipes
*/
type attributeType('t) =
| Lastname: attributeType(string)
| ZipCode: attributeType(int);
type recordType = {
lastname: string,