• Arrays

    An array is like a box with lots of compartments. Each compartment can hold something different. For example, one compartment could hold a number and another could hold a letter. In programming, an array holds information in each compartment so that it can be easily accessed and used.

      • Variable Arrays

      • D

        Example of array in d.
        import std.stdio : write;
        import std.string;
        import std.array;
        
        void main()
        {
        	string[] fruits = ["apple", "banana", "cherry"];
        
        	write(fruits[1]); // banana
        }