Skip to content

Instantly share code, notes, and snippets.

@ziyunli
ziyunli / church.py
Created April 9, 2016 17:54 — forked from vivekhaldar/church.py
Church numerals in Python
#! /usr/bin/python
#
# Church numerals in Python.
# See http://en.wikipedia.org/wiki/Church_encoding
#
# Vivek Haldar <[email protected]>
#
# https://gist.github.com/2438498
zero = lambda f: lambda x: x