Skip to content

Instantly share code, notes, and snippets.

@kylecorbelli
Created April 30, 2018 19:38
Show Gist options
  • Save kylecorbelli/90f2ba9808ea137c8a4e8ca9ba39740e to your computer and use it in GitHub Desktop.
Save kylecorbelli/90f2ba9808ea137c8a4e8ca9ba39740e to your computer and use it in GitHub Desktop.
const greet = (maybeName: Maybe<string>): string => {
switch (maybeName.type) {
case MaybeType.Nothing:
return 'Pleased to meet you!'
case MaybeType.Just:
return `Good to see you again ${maybeName.value}`
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment