notes
This commit is contained in:
parent
5b97b8036f
commit
5db0287326
|
@ -157,10 +157,16 @@ TODO Rocket-strength super cut:
|
||||||
|
|
||||||
λ.(+ $0 $1)
|
λ.(+ $0 $1)
|
||||||
|
|
||||||
TODO Don't use English in exceptions and have more structured exns [demo on raco/pkg]
|
TODO Don't use English in exceptions and have more structured exns
|
||||||
|
[demo on raco/pkg]
|
||||||
|
|
||||||
|
english in error messages is good, but adding a markup language instead of just supporting strings
|
||||||
|
|
||||||
TODO (Define-default-type Number x y z)
|
TODO (Define-default-type Number x y z)
|
||||||
[for define things too]
|
[for define things too]
|
||||||
|
|
||||||
TODO zos don't appear to users (switch to interp if no write access)
|
TODO zos don't appear to users (switch to interp if no write access)
|
||||||
|
|
||||||
|
TODO only use syntax-parse and define-simple-macro
|
||||||
|
|
||||||
|
TODO add a threading macro
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#lang racket/base
|
#lang racket/base
|
||||||
(provide #%module-begin
|
(provide #%module-begin
|
||||||
require
|
require)
|
||||||
provide)
|
|
||||||
|
|
|
@ -142,4 +142,5 @@
|
||||||
unquote
|
unquote
|
||||||
module
|
module
|
||||||
module*
|
module*
|
||||||
module+)
|
module+
|
||||||
|
provide)
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
;; This requires changes to Racket that are not yet pushed, but will
|
;; This requires changes to Racket that are not yet pushed, but will
|
||||||
;; be once the release branch is made.
|
;; 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
|
||||||
(require remix/stx0
|
(require remix/stx0
|
||||||
remix/num/gen0)
|
remix/num/gen0)
|
||||||
|
|
||||||
|
@ -109,3 +112,10 @@
|
||||||
{v7 + ,&})
|
{v7 + ,&})
|
||||||
(module+ test
|
(module+ test
|
||||||
v9)
|
v9)
|
||||||
|
|
||||||
|
;; ...
|
||||||
|
;; ,,,
|
||||||
|
;; ooo
|
||||||
|
;; …
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user