diff options
Diffstat (limited to 'tests/types.toc')
-rw-r--r-- | tests/types.toc | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/tests/types.toc b/tests/types.toc index 25c38d5..726cc85 100644 --- a/tests/types.toc +++ b/tests/types.toc @@ -19,6 +19,29 @@ z ::= nms { } } +slice_to_ll ::= fn(t::=, slice: []t) use ll: LinkedList(t) { + head = slice[0]; + if slice.len == 1 { + tail = null; + } else { + tail = new(LinkedList(t)); + *tail = slice_to_ll(slice[1:]); + } +} + +LinkedList ::= struct (of :: Type) { + head: of; + tail: &LinkedList(of); +} + +Foo ::= struct { + k: int; + b: &Bar; +} + +Bar ::= struct { + f: Foo; +} main ::= fn() { nums := news(int, 10); @@ -45,26 +68,3 @@ main ::= fn() { io.puti(y); } -slice_to_ll ::= fn(t::=, slice: []t) use ll: LinkedList(t) { - head = slice[0]; - if slice.len == 1 { - tail = null; - } else { - tail = new(LinkedList(t)); - *tail = slice_to_ll(slice[1:]); - } -} - -LinkedList ::= struct (of :: Type) { - head: of; - tail: &LinkedList(of); -} - -Foo ::= struct { - k: int; - b: &Bar; -} - -Bar ::= struct { - f: Foo; -} |