Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created April 1, 2015 11:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/d4132acf0f4a2194b5c0 to your computer and use it in GitHub Desktop.
Save shigemk2/d4132acf0f4a2194b5c0 to your computer and use it in GitHub Desktop.
-- 結合性
infixr 5 :-:
data List a = Empty | a :-: (List a) deriving (Show, Read, Eq, Ord)
main = do
print $ 3 :-: 4 :-: 5 :-: Empty
let a = 3 :-: 4 :-: 5 :-: Empty
print $ 100 :-: a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment