mirror of
https://github.com/ruuda/rcl.git
synced 2025-12-23 04:47:19 +00:00
10 lines
170 B
Text
10 lines
170 B
Text
[
|
|
"abc".contains("qabcd"),
|
|
"abc".contains("abc"),
|
|
"abc".contains("aqc"),
|
|
"abc".contains("b"),
|
|
"abc".contains(""),
|
|
]
|
|
|
|
# output:
|
|
[false, true, false, true, true]
|