Skip to content

Instantly share code, notes, and snippets.

@edwinb
Created June 18, 2014 13:45
Show Gist options
  • Save edwinb/128d73a381b49e66c691 to your computer and use it in GitHub Desktop.
Save edwinb/128d73a381b49e66c691 to your computer and use it in GitHub Desktop.
Joke
joke : Protocol ['A, 'B] ()
joke = do 'A ==> 'B | Literal "Knock knock"
'B ==> 'A | Literal "Who's there?"
name <- 'A ==> 'B | String
'B ==> 'A | Literal (name ++ " who?")
'A ==> 'B | (punchline : String **
Literal (name ++ punchline))
Done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment