mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
14 lines
113 B
Python
14 lines
113 B
Python
|
|
# Test the unicode support! 👋
|
|
|
|
|
|
áš´=2
|
|
|
|
assert áš´*8 == 16
|
|
|
|
ᚴ="👋"
|
|
|
|
c = áš´*3
|
|
|
|
assert c == '👋👋👋'
|