mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 14:48:40 +01:00
5 lines
243 B
Plaintext
5 lines
243 B
Plaintext
IO.print("abcd".endsWith("cd")) // expect: true
|
|
IO.print("abcd".endsWith("abcde")) // expect: false
|
|
IO.print("abcd".endsWith("abcd")) // expect: true
|
|
IO.print("abcd".endsWith("f")) // expect: false
|
|
IO.print("abcd".endsWith("")) // expect: true |