Skip to content

Instantly share code, notes, and snippets.

View dutc's full-sized avatar

James Powell dutc

View GitHub Profile
@dutc
dutc / Makefile
Last active May 26, 2017 16:06 — forked from llllllllll/cell_set.py
SHELL = /bin/zsh
.PHONY: test
.ONESHELL:
test: cell_set.py
@for interp in pypy pypy3 python2 python lua; do
printf "%-8s %s\n" "$$interp" "$$($$interp $^ >/dev/null 2>&1 && echo "✓" || echo "✗")"
done