11 lines
212 B
Plaintext
11 lines
212 B
Plaintext
def テスト(引数="こんにちは"):
|
|
print("ああ、", 引数)
|
|
|
|
テスト()
|
|
テスト("こんばんは!")
|
|
|
|
let おはよう = "おはようございます!"
|
|
テスト(おはよう)
|
|
|
|
print(テスト)
|