]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - bin/calc
shell: set GOTOOLCHAIN=local
[config/dotfiles.git] / bin / calc
diff --git a/bin/calc b/bin/calc
deleted file mode 100755 (executable)
index 7f4b035..0000000
--- a/bin/calc
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-python -i -c 'from math import *;
-
-def ld(x):
-    return log(x)/log(2)
-
-def binom(n,k):
-    return reduce(lambda a,b: a*(n-b)/(b+1),xrange(k),1)
-
-print "Welcome to the ultimate calculator."'
-
-# vim: ft=python