1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
;; -*-theme-d-*-
;; Copyright (C) 2008-2013 Tommi Höynälänmaa
;; Distributed under GNU General Public License version 3,
;; see file doc/GPL-3.
;; Expected results: translation and running OK
(define-proper-program (tests test74)
(import (standard-library core)
(standard-library console-io))
(declare :my-tree <param-class>)
(define-param-class :my-tree
(parameters %type)
(fields
(node-value %type public public)
(subtrees (:uniform-list (:my-tree %type)) public public)))
(declare my-proc (:param-proc (%type)
((:my-tree %type))
%type
pure))
(define-simple-proc make-my-tree
(((node-value <integer>) (subtrees (:uniform-list (:my-tree <integer>))))
(:my-tree <integer>)
pure)
(create (:my-tree <integer>)
node-value
subtrees))
(define-param-proc my-proc (%type)
(((tree (:my-tree %type))) %type pure)
(field-ref tree 'node-value))
(define main
(lambda (() <integer> nonpure)
(let ((my-tree
(make-my-tree
1
(list
(make-my-tree
2
null)
(make-my-tree
3
(list
(make-my-tree
4
null)
(make-my-tree
5
null)))))))
(console-display (my-proc my-tree))
(console-newline))
0)))
|