int main(void) {
    // simple test of initializing and subscripting char array
    unsigned char chars[4] = "abc";
    return chars[2];
}