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
|
;; -*-theme-d-*-
;; Copyright (C) 2018 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 test737)
(import (standard-library core)
(standard-library list-utilities)
(standard-library console-io))
(define-param-proc my-proc (%type1 %type2)
(((proc1 (:procedure (%type1) %type1 pure))
(proc2 (:procedure (%type2) %type2 pure))
(l1 (:uniform-list %type1))
(l2 (:uniform-list %type2)))
(:uniform-list (:pair %type1 %type2))
pure)
(let ((l3 (map1 proc1 l1))
(l4 (map1 proc2 l2)))
(map cons l3 l4)))
(define-param-proc plus-one (%type)
(((x %type)) %type pure)
(+ x 1))
(define-main-proc (() <none> nonpure)
(let ((l1 '(1 2 3 4 5))
(l2 '(10.5 9.5 8.5 7.5 6.5)))
(console-display-line (my-proc plus-one plus-one l1 l2)))))
|