Sign in
apache
/
nuttx-apps
/
ec4d7a19f73ceca2a87fd54fc90454ff892c6beb
/
.
/
examples
/
bastest
/
tests
/
test29.bas
blob: 934bbdd252204823a5e85398e2e56791ce3ab88c [
file
] [
log
] [
blame
]
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?"