need help with data types

so, as you know, there many different types of data types IE: int, bool, double, array, ect. My problem is that is need to store 127 values, and none of them need to be changed after programming. I’m used to arduino IDE, so I would use


const datatype variablename] PROGMEM = {data0, data1, data2, data3 . . .} 

Is there an equivalent datatype for robotc?

more or less the same, you can have an initialized array of whatever (non complex, ie. no structures) data type you like. For example;

const int data[4] = {1,2,3,4};

task main()
{
    writeDebugStreamLine("%d %d %d %d", data[0], data[1], data[2], data[3] );

    while(1) wait1Msec(10):
}