netcdf NestedSeq {
types:
  short(*) stuff_t ;
  compound person1_record_t {
    int age ;
    stuff_t stuff ;
  }; // person1_record_t
  person1_record_t(*) person1_t ;
variables:
	person1_t person1 ;
data:

 person1 = 
    {{1, {0, 16, 32, 48, 64}}, {2, {80, 96, 112, 128, 144}}, {3, {160, 176, 192, 208, 224}}, {5, {240, 256, 272, 288, 304}}, {8, {320, 336, 352, 368, 384}}} ;
}