mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 04:50:20 -06:00
11 lines
183 B
Python
11 lines
183 B
Python
from __future__ import print_function
|
|
|
|
import sys
|
|
|
|
|
|
def func():
|
|
print('{0}.{1}'.format(*sys.version_info[:2]))
|
|
print(repr(sys.argv[1:]))
|
|
print('Hello World')
|
|
return 0
|