summaryrefslogtreecommitdiffstats
path: root/testing/resources/python_venv_hooks_repo/foo.py
blob: 9c4368e200737f1bee46bc073b287e80fcbcce08 (plain)
1
2
3
4
5
6
7
import sys


def main():
    print(repr(sys.argv[1:]))
    print('Hello World')
    return 0