Skip to content

Instantly share code, notes, and snippets.

@jwiegley
Created February 13, 2024 17:54
Show Gist options
  • Save jwiegley/724abb87ba71dfed5a2c687e9cb1b245 to your computer and use it in GitHub Desktop.
Save jwiegley/724abb87ba71dfed5a2c687e9cb1b245 to your computer and use it in GitHub Desktop.
fbfn :: Int -> String
fbfn i = fromMaybe (show i) s
where
s = do
f <- fizz i
b <- buzz i
pure $ f <> " " <> b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment