8 lines
95 B
Python
8 lines
95 B
Python
from __future__ import annotations
|
|
|
|
|
|
def main() -> int:
|
|
print('Hello world')
|
|
|
|
return 0
|