mirror of
https://github.com/ruuda/rcl.git
synced 2025-12-23 04:47:19 +00:00
10 lines
174 B
Text
10 lines
174 B
Text
[
|
|
"abc".ends_with("qabc"),
|
|
"abc".ends_with("abc"),
|
|
"abc".ends_with("qbc"),
|
|
"abc".ends_with("c"),
|
|
"abc".ends_with(""),
|
|
]
|
|
|
|
# output:
|
|
[false, true, false, true, true]
|