Untitled
unknown
swift
5 years ago
285 B
6
Indexable
for command in COMMAND_NEXT {
if response.lowercased().contains(command) {
//NEXT command is recognised
return
}
}
for command in COMMAND_PREVIOUS {
if response.lowercased().contains(command) {
//PREVIOUS command is recognised
return
}
}Editor is loading...