]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - bin/calc
7f4b0357c4542a31c1d03490f7360c010ea40111
[config/dotfiles.git] / bin / calc
1 #!/bin/sh
2
3 python -i -c 'from math import *;
4
5 def ld(x):
6     return log(x)/log(2)
7
8 def binom(n,k):
9     return reduce(lambda a,b: a*(n-b)/(b+1),xrange(k),1)
10
11 print "Welcome to the ultimate calculator."'
12
13 # vim: ft=python