File: test264.thp

package info (click to toggle)
theme-d 7.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,036 kB
  • sloc: lisp: 9,625; sh: 5,321; makefile: 715; ansic: 477
file content (61 lines) | stat: -rw-r--r-- 1,640 bytes parent folder | download | duplicates (2)
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
;; -*-theme-d-*-

;; Copyright (C) 2014  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 test264)


  (import (standard-library core)
	  (standard-library list-utilities)
	  (standard-library console-io))


  (define-class <my-record>
    (fields
     (name <string> public public)
     (address <string> public public)))


  (define-class <my-database>
    (fields
     (contents (:uniform-list <my-record>) public module)))


  (define-simple-proc add-record (((db <my-database>) (rec <my-record>))
				  <none>
				  (nonpure))
    (field-set! db 'contents
		(cons rec (field-ref db 'contents))))


  (define-simple-proc display-record (((rec <my-record>)) <none> (nonpure))
    (console-display-string "name: ")
    (console-display-string (field-ref rec 'name))
    (console-newline)
    (console-display-string "address: ")
    (console-display-string (field-ref rec 'address))
    (console-newline))


  (define-simple-proc display-database (((db <my-database>)) <none> (nonpure))
    (for-each display-record (field-ref db 'contents))
    (console-newline))


  (define main
    (lambda (() <none> nonpure)
      (let-mutable ((db (:maybe <my-database>) null))
	(let ((rec1 (create <my-record> "Tommi" "PL 0"))
	      (rec2 (create <my-record> "Janne" "PL 1"))
	      (rec3 (create <my-record> "Jukka" "PL 2")))
	(set! db (create <my-database> null))
	(let ((db1 (cast <my-database> db)))
	  (add-record db1 rec1)
	  (add-record db1 rec2)
	  (add-record db1 rec3)
	  (display-database db1)))))))