continuing to work on structures
This commit is contained in:
parent
9b3951adb6
commit
56e523fbc9
|
@ -1 +1,3 @@
|
|||
hello world
|
||||
hello again
|
||||
helloworld
|
||||
|
|
|
@ -1,2 +1,8 @@
|
|||
#lang planet dyoo/whalesong
|
||||
(displayln "hello world")
|
||||
|
||||
|
||||
(displayln (format "hello ~a" "again"))
|
||||
|
||||
(printf "hello")
|
||||
(printf "world\n")
|
|
@ -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")
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user