Fixup some comments
This commit is contained in:
parent
27f471e04e
commit
3e53a386aa
|
@ -17,6 +17,9 @@
|
||||||
#:literals (#%brackets)
|
#:literals (#%brackets)
|
||||||
[(_ (#%brackets dt . _) . _)
|
[(_ (#%brackets dt . _) . _)
|
||||||
#:declare dt (static def-transformer? "def transformer")
|
#:declare dt (static def-transformer? "def transformer")
|
||||||
|
;; xxx maybe this interface should be thicker, because right now
|
||||||
|
;; it can expand to anything at all. thicker would mean more
|
||||||
|
;; composable.
|
||||||
(def-transform (attribute dt.value) stx)]
|
(def-transform (attribute dt.value) stx)]
|
||||||
;; xxx test this
|
;; xxx test this
|
||||||
[(_ dt . body:expr)
|
[(_ dt . body:expr)
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
#lang remix
|
#lang remix
|
||||||
;; This requires changes to Racket that are not yet pushed, but will
|
|
||||||
;; be once the release branch is made.
|
|
||||||
|
|
||||||
;; #lang remix only contains two bindings: #%module-begin and require
|
;; #lang remix only contains two bindings: #%module-begin and require
|
||||||
;;
|
;;
|
||||||
;; we use require to get everything else. most of it comes from stx0
|
;; We use require to get everything else. most of it comes from stx0
|
||||||
(require remix/stx0
|
(require remix/stx0
|
||||||
remix/num/gen0)
|
remix/num/gen0)
|
||||||
(module+ test
|
(module+ test
|
||||||
|
@ -219,7 +216,8 @@
|
||||||
(module+ test
|
(module+ test
|
||||||
{(flipper - 5 9 0) ≡ (- 0 5 9)})
|
{(flipper - 5 9 0) ≡ (- 0 5 9)})
|
||||||
|
|
||||||
;; data gives us data structures and that sort of thing
|
;; data gives us interfaces, compound data, and data types and that
|
||||||
|
;; sort of thing
|
||||||
(require remix/data0)
|
(require remix/data0)
|
||||||
|
|
||||||
;; First, we can define static interfaces, which associate dot-terms
|
;; First, we can define static interfaces, which associate dot-terms
|
||||||
|
@ -260,4 +258,3 @@
|
||||||
(ee.f 2))
|
(ee.f 2))
|
||||||
(module+ test
|
(module+ test
|
||||||
{(f-using-example 1) ≡ 1})
|
{(f-using-example 1) ≡ 1})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user