14 lines
183 B
Python
Executable File
14 lines
183 B
Python
Executable File
#!/usr/bin/python
|
|
#coding=utf8
|
|
"""
|
|
# Author: songtianlun
|
|
# Created Time : 2021-11-22 09:28:07
|
|
|
|
# File Name: effects/echo.py
|
|
# Description:
|
|
|
|
"""
|
|
|
|
def show():
|
|
print("hello world!")
|