Skip to content

Instantly share code, notes, and snippets.

@dwins
Created December 14, 2009 23:48
Show Gist options
  • Save dwins/256571 to your computer and use it in GitHub Desktop.
Save dwins/256571 to your computer and use it in GitHub Desktop.
def foo: Parser[Tuple2] = ("Name:" ~> name) ~ ("Amount:" ~> money) ^^ { case n ~ a => (n, a) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment