mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-01 21:21:10 +00:00
6 lines
101 B
Python
6 lines
101 B
Python
show s =
|
|
s.to_str()
|
|
|
|
assert show(1) == "1"
|
|
assert show(True) == "True"
|
|
# discard show((x,) -> x)
|