Fixup some comments

This commit is contained in:
Jay McCarthy 2015-11-25 09:09:51 -05:00
parent 27f471e04e
commit 3e53a386aa
2 changed files with 6 additions and 6 deletions

View File

@ -17,6 +17,9 @@
#:literals (#%brackets)
[(_ (#%brackets dt . _) . _)
#: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)]
;; xxx test this
[(_ dt . body:expr)

View File

@ -1,10 +1,7 @@
#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
;;
;; 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
remix/num/gen0)
(module+ test
@ -219,7 +216,8 @@
(module+ test
{(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)
;; First, we can define static interfaces, which associate dot-terms
@ -260,4 +258,3 @@
(ee.f 2))
(module+ test
{(f-using-example 1) 1})