Source code for DemoPackage.utils

""" Utility functions."""
# Author  : Sourabh Bajaj
# Date    : 26th April, 2013
# Email   : sourabhbajaj@gatech.edu
# Summary : Testing Utils file
# License : BSD License



[docs]def main(): ''' This is the main function ''' print "This is the main function"
if __name__ == '__main__': main()