Skip to content

Instantly share code, notes, and snippets.

@bennage
Created July 13, 2010 17:34
Show Gist options
  • Save bennage/474213 to your computer and use it in GitHub Desktop.
Save bennage/474213 to your computer and use it in GitHub Desktop.
// what's a better way?
let fullName (first,last) =
match (first, last) with
"",_ | null,_ -> first
| _,null | _,"" -> last
| _ -> sprintf "%s.%s" first last
@bennage
Copy link
Author

bennage commented Jul 13, 2010

Matt offered this solution too:
http://gist.github.com/474421

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment