7 lines
231 B
Text
7 lines
231 B
Text
(indexof 0 ==) :starts-with?
|
|
(indexof -1 !=) :contains?
|
|
((/ $/) swap 1 insert "" join regex ("") !=) :ends-with?
|
|
|
|
"minimalistic" "min" starts-with? puts!
|
|
"minimalistic" "list" contains? puts!
|
|
"minimalistic" "list" ends-with? puts!
|