diff --git a/bin/hy-lex-json b/bin/hy-lex-json deleted file mode 100755 index f311a65..0000000 --- a/bin/hy-lex-json +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env python - -from hy.lex.tokenize import tokenize -import json -import sys - - -print json.dumps( - tokenize(open(sys.argv[1], 'r').read()), - indent=4, - sort_keys=True -)