kuroko/test/testUnicodeIdentifiers.krk

11 lines
242 B
Python

def テスト(引数="こんにちは"):
print("ああ、", 引数)
テスト()
テスト("こんばんは!")
let おはよう = "おはようございます!"
テスト(おはよう)
print('<function テスト' in str(テスト))