mirror of
https://github.com/shareAI-lab/analysis_claude_code.git
synced 2026-06-21 20:53:40 +08:00
7 lines
85 B
Python
7 lines
85 B
Python
def greet(name):
|
|
message = "Hello, " + name
|
|
print(message)
|
|
|
|
|
|
greet("Claude")
|