Category: Level 15
-
Level 15 Lesson 01 [ Arrays ]
Introduction A variable is great at storing one value. But is it possible to store several values under one variable name? Of course. One option you have explored in Level 13 is the list data structure. In this level we will take a look at arrays and how they can make certain game tasks much…
-
Level 15 Intro
You have learned how to store numbers and text using variables, lists, maps, and grids. In this level you will learn one final way to store values – Arrays. Arrays are common to almost all programming languages. Arrays allow you store many values under one variable name. Arrays are similar to lists, but more…