Files
Kenneth Reitz bcf56a2ed6 basic module
2011-05-29 04:01:22 -04:00

28 lines
328 B
Python

# -*- coding: utf-8 -*-
"""
haystack.core
~~~~~~~~~~~~~
This module contains the core Haystack functionality.
"""
from random import random
def maths(*args, **kwargs):
"""Does all the maths."""
return random()
def main():
print 'Random Number: {0}'.format(maths())
if __name__ == '__main__':
main()