Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
701 B

  1. # Main python module - establishes the root scope for all python vscripts
  2. # hook up to the eclipse pydev debug server
  3. #import pydevd #path to pydevd.py must be on the PYTHONPATH environment variable
  4. #pydevd.settrace()
  5. #import os
  6. #print("working directory: %s", os.getcwd()) # print working directory
  7. #
  8. #import sys
  9. #print("module search path: %s",sys.path) # print module search path
  10. #sys.path.append('u:/projects/sob/src/vscript/languages/python/vpython')
  11. #U:\projects\sob\src\vscript\languages\python\vpython
  12. #print "modified module search path: " sys.path
  13. #import ctypes
  14. print "init.py just ran!"
  15. def sayhowdy():
  16. print "howdy"
  17. if __name__ == '__main__':
  18. print "hello world"