12 lines
241 B
Plaintext
12 lines
241 B
Plaintext
# Automatically generated; edit in Sphinx source code, not here.
|
|
module Test;
|
|
|
|
type Data = unit {
|
|
data: bytes &size=2;
|
|
} &convert=self.data.to_int();
|
|
|
|
public type Foo = unit {
|
|
numbers: Data[];
|
|
|
|
on %done { print self.numbers; }
|
|
}; |