7 lines
93 B
Python
7 lines
93 B
Python
#! /usr/bin/env python
|
|
def main() -> None:
|
|
pass
|
|
|
|
if "__name__" == "__main__":
|
|
main()
|