Thread: aindexof()
View Single Post
  #3  
Old 05-26-2003, 11:25 PM
Python523 Python523 is offline
Banned
Join Date: Aug 2001
Location: Illinois
Posts: 3,498
Python523 is on a distinguished road
Re: aindexof()

Quote:
Originally posted by osrs
==================================
- aindexof(value,array)
calculates the positon of the first occurance
of value in the given array
==================================

I didnt get it,could someone explain me better?
Thanks.
...is it that hard to understand? geez x_X
a = {5,4,3,2,1,0};
b = aindexof(4,a);

b will equal 1
Reply With Quote