netcdf-c/ncdump/cdl/ref_tst_comp3.cdl

15 lines
190 B
Plaintext
Raw Normal View History

2010-06-03 21:24:43 +08:00
netcdf ref_tst_comp3 {
types:
compound c_t {
float x ;
double y ;
}; // c_t
compound d_t {
c_t s1 ;
}; // d_t
variables:
d_t x;
data:
x = {{1,-2}};
}