mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
19 lines
181 B
Plaintext
19 lines
181 B
Plaintext
|
netcdf ref_niltest {
|
||
|
dimensions:
|
||
|
d1 = 1 ;
|
||
|
d2 = 2 ;
|
||
|
variables:
|
||
|
string v1 ;
|
||
|
string v2(d1) ;
|
||
|
string v3(d2, d2) ;
|
||
|
data:
|
||
|
|
||
|
v1 = NIL ;
|
||
|
|
||
|
v2 = NIL ;
|
||
|
|
||
|
v3 =
|
||
|
NIL, NIL,
|
||
|
NIL, NIL ;
|
||
|
}
|