kiwijunglist

Untitled

Aug 3rd, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Array := Object()
  2. Array["a"] := "Apples"
  3. Array["b"] := "Bannas"
  4. Array["b"] := "bottles"
  5. Array["b"] := "bees"
  6. Array["c"] := "Cucumber"
  7.  
  8. ; Count the index (Can I do this without doing a forloop?)
  9. ArrayCount := 0
  10. for index, in Array
  11. ArrayCount++
  12.  
  13. msgbox % "The Primary Index (Letter) count is = " ArrayCount
Advertisement
Add Comment
Please, Sign In to add comment