mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
15 lines
189 B
Plaintext
15 lines
189 B
Plaintext
netcdf test {
|
|
types:
|
|
compound floats_t {
|
|
float f32 ;
|
|
}; // floats_t
|
|
compound types_t {
|
|
floats_t floats ;
|
|
}; // types_t
|
|
variables:
|
|
types_t types ;
|
|
data:
|
|
|
|
types = {{0}} ;
|
|
}
|