Skip to content

Instantly share code, notes, and snippets.

@CoditCompany
Created September 8, 2017 06:37
Show Gist options
  • Select an option

  • Save CoditCompany/ada84cc146d53181d8dd7deb898f3593 to your computer and use it in GitHub Desktop.

Select an option

Save CoditCompany/ada84cc146d53181d8dd7deb898f3593 to your computer and use it in GitHub Desktop.
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