First commit

This commit is contained in:
2024-07-30 12:48:04 +02:00
parent 5583d15cda
commit f733a4c6b5
52 changed files with 541 additions and 1629 deletions

View File

@@ -1 +1 @@
This directoy stores each Python Package.
This directoy stores each Python Package.

View File

View File

@@ -1,8 +0,0 @@
# -------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in project root for information.
# -------------------------------------------------------------
"""Python Package Template"""
from __future__ import annotations
__version__ = "0.0.2"

View File

@@ -1,25 +0,0 @@
# ---------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See LICENSE in project root for information.
# ---------------------------------------------------------------------------------
"""This is a Sample Python file."""
from __future__ import annotations
def hello_world(i: int = 0) -> str:
"""Doc String."""
print("hello world")
return f"string-{i}"
def good_night() -> str:
"""Doc String."""
print("good night")
return "string"
def hello_goodbye():
hello_world(1)
good_night()