# ---------------------------------------------------------------------------------
# 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
[docs]
def hello_world(i: int = 0) -> str:
"""Doc String."""
print("hello world")
return f"string-{i}"
[docs]
def good_night() -> str:
"""Doc String."""
print("good night")
return "string"
[docs]
def hello_goodbye():
hello_world(1)
good_night()