My favorites | Sign in
Project Logo
                
Search
for
Updated Mar 17, 2007 by jannone
Structures  
Light Structures

Light Structures

Light structures are just like C structs, however you must manually map each member to a BASIC variable name.

Once declared, they work transparently.

You can only use light structures associated with a given array.

Examples

$dim person(10) {
	name as na$,
	address as ad$,
	age as age
}

$person.name(0) = "Joe Foobar"
$person.address(0) = "FooBaz avenue, 42"
$person.age(0) = 35

Sign in to add a comment
Hosted by Google Code