mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
03bcf72d90
git-svn-id: http://svn.pyinstaller.org/trunk@844 8dd32b29-ccff-0310-8a9a-9233e24343b1
13 lines
170 B
Python
13 lines
170 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from numpy.core.numeric import dot
|
|
|
|
|
|
def main():
|
|
print "dot(3, 4):", dot(3, 4)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|