mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-04 19:07:16 +08:00

* Remove multiple newlines at the end of file * Remove the white space from the end of line
7 lines
244 B
QBasic
7 lines
244 B
QBasic
print instr("123456789","456");" = 4?"
|
|
print INSTR("123456789","654");" = 0?"
|
|
print INSTR("1234512345","34");" = 3?"
|
|
print INSTR("1234512345","34",6);" = 8?"
|
|
print INSTR("1234512345","34",6,2);" = 0?"
|
|
print INSTR("1234512345","34",6,4);" = 8?"
|