Skip to content

Instantly share code, notes, and snippets.

@zarinfam
Created August 2, 2019 13:37
Show Gist options
  • Save zarinfam/cfc7b1fc5f47532c13f75c3b780858db to your computer and use it in GitHub Desktop.
Save zarinfam/cfc7b1fc5f47532c13f75c3b780858db to your computer and use it in GitHub Desktop.
Created with Copy to Gist
def echoConcat[F[_]: Monad](s1: F[String], s2: F[String]): F[String] = for {
x <- s1
y <- s2
} yield s"echo $x $y"
echoConcat(Option("Hello"), Option("World!"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment