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
|
;; -*-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 test59)
(import (standard-library core)
(standard-library list-utilities)
(standard-library console-io))
(define-simple-proc my-proc
(((a <real>) (b <string>)) (:pair <string> <real>) nonpure)
(console-display b)
(console-display ",")
(console-display a)
(cons b a))
(define-simple-proc display-list
(((lst <list>)) <none> nonpure)
(console-display lst))
(define-simple-proc display-pair
(((a <object>) (b <object>)) <none> nonpure)
(console-display a)
(console-display ",")
(console-display b))
(define main
(lambda (() <none> nonpure)
(let ((lst1 (map cons (list 1 2 3) (list 1.5 2.5 3.5)))
(lst2 (map-nonpure my-proc
(list 1.1 2.1 3.1 4.1)
(list "abc" "def" "ghi" "jkl"))))
(display-list lst1)
(console-newline)
(display-list lst2)
(console-newline)
(for-each display-pair (list 'a 'b 'c) (list #t #f #t))
(console-newline)))))
|