mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
10 lines
116 B
Plaintext
10 lines
116 B
Plaintext
netcdf test {
|
|
dimensions:
|
|
person = 5 ;
|
|
variables:
|
|
int person.age(person) ;
|
|
data:
|
|
|
|
person.age = 1, 2, 3, 5, 8 ;
|
|
}
|