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
|
;; -*-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 test427)
(import (standard-library core)
(standard-library console-io))
(define-param-proc my-map1 (%type1 %type2)
(((proc (:procedure (%type1) %type2 pure))
(lst (:uniform-list %type1)))
(:uniform-list %type2)
pure)
(match-type lst
((<null>) null)
((lst2 (:nonempty-uniform-list %type1))
(let ((hd (car lst2))
(tl (cdr lst2)))
(cons
(proc hd)
(my-map1 proc tl))))))
(define-simple-proc my-proc (((i <integer>)) <real> pure)
(+ i 0.5))
(define main
(lambda (() <none> nonpure)
(let ((l '(1 2 3 4 5)))
(console-display-line
(my-map1 my-proc l))))))
|