mfp1-2022/main.py

29 lines
708 B
Python
Raw Permalink Normal View History

2022-10-10 11:17:09 +02:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
2022-10-24 18:08:40 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-10 11:17:09 +02:00
# IMPORTS
2022-10-24 18:08:40 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-10 11:17:09 +02:00
import os;
import sys;
os.chdir(os.path.dirname(__file__));
sys.path.insert(0, os.getcwd());
2022-10-24 18:08:40 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-10 11:17:09 +02:00
# MAIN
2022-10-24 18:08:40 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-10 11:17:09 +02:00
def enter():
print('Not yet implemented.');
return;
2022-10-24 18:08:40 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-10 11:17:09 +02:00
# EXECUTION
2022-10-24 18:08:40 +02:00
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2022-10-10 11:17:09 +02:00
if __name__ == '__main__':
# sys.tracebacklimit = 0;
enter();