summaryrefslogtreecommitdiffstats
path: root/testing/resources/python_hooks_repo/foo.py
blob: 40efde39282bc21bc45acfadf1025e8eff6d7b0c (plain)
1
2
3
4
5
6
7
8
9
from __future__ import annotations

import sys


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