#!/usr/bin/env python
"Calculate the variance of a number sequence"

from statstools import run

if __name__ == '__main__':
  run('var', __doc__)
