continuing to work on structures

This commit is contained in:
Danny Yoo 2011-07-01 11:33:46 -04:00
parent 9b3951adb6
commit 56e523fbc9
4 changed files with 13 additions and 10 deletions

View File

@ -1 +1,3 @@
hello world
hello again
helloworld

View File

@ -1,2 +1,8 @@
#lang planet dyoo/whalesong
(displayln "hello world")
(displayln (format "hello ~a" "again"))
(printf "hello")
(printf "world\n")

View File

@ -3,4 +3,4 @@
(require "../browser-harness.rkt")
(test "hello.rkt" "hello.expected")
#;(test "simple-structs.rkt" "simple-structs.expected")
(test "simple-structs.rkt" "simple-structs.expected")

View File

@ -3,19 +3,14 @@
(define-struct p (f r))
"1"
struct:p
"2"
make-p
"3"
p-f
"4"
p-r
"5"
p?
"6"
#;(define p1 (make-p 3 4))
#;(p-f p1)
#;(p-r p1)
(define p1 (make-p 3 4))
(p-f p1)
(p-r p1)