1# Used for the AsciiOutput unit tests.
2
3dataset {
4    Int32 a;
5
6    Structure {
7        Int32 b;
8        Float64 c;
9        String d;
10    } e;
11
12    Structure {
13        Int32 b;
14        Float64 c;
15        String d;
16    } f;
17
18    Grid {
19      array:
20        Byte xy[x=12][y=12];
21      maps:
22        Float64 x[12];
23	Float64 y[12];
24    } g;
25
26    Sequence {
27        Int16 j;
28	Sequence {
29	    Int16 i;
30        } h;
31    } k;
32
33} ascii_output_test;
34