Rem Len is a BlitzMax operator that returns the number of elements in a container Type. End Rem a$="BlitzMax Rocks" Print Len a$ 'prints 14 Local b[] Print Len b 'prints 0 b=new Int[20] Print Len b 'prints 20