Skip to content

Instantly share code, notes, and snippets.

View hanyuone's full-sized avatar

Hanyuan Li hanyuone

View GitHub Profile
@hanyuone
hanyuone / combinators.txt
Last active January 6, 2017 14:13
A list of test combinators.
3 -> 1 (2 3)
3 -> 1 3 2
3 -> 2 3 1
3 -> 3 1 2
3 -> 1 1 2 2 3 3
3 -> 2
4 -> 2 3 4 1
4 -> 3 4 1 2
4 -> 4 1 2 3
4 -> 2 1 4 3