Add example with funky expression and tupels

closes #83
This commit is contained in:
Pyfisch 2017-10-29 18:48:54 +01:00 committed by GitHub
parent 01ccd43789
commit f7e83a3f4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -407,6 +407,7 @@ give you the idea:
| ----------- | ------------- |
| `A => bar(<>)` | `<a:A> => bar(a)` |
| `A B => bar(<>)` | `<a:A> <b:B> => bar(a, b)` |
| `A B => (<>)` | `<a:A> <b:B> => (a, b)` |
| `<A> B => bar(<>)` | `<a:A> B => bar(a)` |
| `<p:A> B => bar(<>)` | `<p:A> B => bar(p)` |
| `<A> <B> => bar(<>)` | `<a:A> <b:B> => bar(a, b)` |