motivating the need for make-struct-type

This commit is contained in:
Danny Yoo 2011-06-30 16:14:47 -04:00
parent b985efc28c
commit e3aed9b884
3 changed files with 10 additions and 1 deletions

View File

@ -2,4 +2,5 @@
(require "../browser-harness.rkt")
(test "hello.rkt" "hello.expected")
(test "hello.rkt" "hello.expected")
(test "simple-structs.rkt" "simple-structs.expected")

View File

@ -0,0 +1,2 @@
3
4

View File

@ -0,0 +1,6 @@
#lang planet dyoo/whalesong
(define-struct p (f r))
(define p1 (make-p 3 4))
(p-f p1)
(p-r p1)