mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
10 lines
163 B
Python
10 lines
163 B
Python
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
|
|
def func():
|
|
print(sys.version_info[0])
|
|
print(repr(sys.argv[1:]))
|
|
print('Hello World')
|
|
return 0
|