mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
18 lines
373 B
Python
18 lines
373 B
Python
def handler(msg):
|
|
"""
|
|
Writes input argument back-out to the standard output returning input as
|
|
output.
|
|
|
|
Generated by: `SQL Server Big Data Cluster`
|
|
|
|
:param msg: The message to echo.
|
|
:type msg: str
|
|
:return: The input message `msg` as output `out`.
|
|
"""
|
|
print(msg)
|
|
out = msg
|
|
return out
|
|
|
|
|
|
if __name__ == '__main__':
|
|
handler('Hello') |