1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Initial commit

This commit is contained in:
MoonTestUse1
2024-12-23 19:27:44 +06:00
commit e81df4c87e
4952 changed files with 1705479 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
from .blank_func import reverse
from . import main
__version__ = "0.1.0"
__all__ = [
"reverse",
]

View File

@@ -0,0 +1,10 @@
# -*- coding: utf-8 -*-
def reverse(value):
if not isinstance(value, str):
return None
result = ''
for i in reversed(range(len(value))):
result += value[i]
return result

View File

@@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
def say_hello():
print("Welcome to Blank package!")