Data Structures in SCL
There are two types of data structures in SCL: Lists and key/value pairs.
Data Lists
Lists let you keep a set of values that you can access in loops.
There are many special commands for lists that help you go through a list.
create data from list as MyList end
Data Pairs
Key/value pairs let you access values using a 'key' name that you give the
value. This is a convenient way to store and retrieve data that is used
through-out your program.
create data from pairs as MyList end
Data structures are a key mechanism in creating levels in SCL.
You can find more information about levels here.