Created
September 8, 2017 06:37
-
-
Save CoditCompany/ada84cc146d53181d8dd7deb898f3593 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Customer = | |
| { Country : string | |
| FullName : string | |
| Street : string | |
| City : string | |
| State : string | |
| PostalCode : string } | |
| let customer country name street city state postal = | |
| { Country = country; FullName = name; Street = street ; State = state; City = city; PostalCode = postal } | |
| let pcustomer = pipe6 country fullname street city state postal customer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment