mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
11 lines
174 B
Python
11 lines
174 B
Python
assert "a" == 'a'
|
|
assert """a""" == "a"
|
|
assert len(""" " "" " "" """) == 11
|
|
assert "\"" == '"'
|
|
assert "\"" == """\""""
|
|
|
|
assert "\n" == """
|
|
"""
|
|
|
|
assert len(""" " \" """) == 5
|