Use #lang racket/base instead of #lang racket
This commit is contained in:
parent
b5b44a35fc
commit
e5ec587879
|
@ -1,8 +1,9 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide acond it)
|
(provide acond it)
|
||||||
(require anaphoric/it
|
(require anaphoric/it
|
||||||
racket/stxparam)
|
racket/stxparam
|
||||||
|
(for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax (acond stx)
|
(define-syntax (acond stx)
|
||||||
(syntax-case stx (else)
|
(syntax-case stx (else)
|
||||||
|
|
5
aif.rkt
5
aif.rkt
|
@ -1,8 +1,9 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide aif it)
|
(provide aif it)
|
||||||
(require anaphoric/it
|
(require anaphoric/it
|
||||||
racket/stxparam)
|
racket/stxparam
|
||||||
|
(for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax-rule (aif condition true-branch false-branch)
|
(define-syntax-rule (aif condition true-branch false-branch)
|
||||||
(let ([tmp condition])
|
(let ([tmp condition])
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide awhen it)
|
(provide awhen it)
|
||||||
(require anaphoric/it
|
(require anaphoric/it
|
||||||
racket/stxparam)
|
racket/stxparam
|
||||||
|
(for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax-rule (awhen condition . body)
|
(define-syntax-rule (awhen condition . body)
|
||||||
(let ([tmp condition])
|
(let ([tmp condition])
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide cond-let)
|
(provide cond-let)
|
||||||
|
|
||||||
|
(require (for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax (cond-let stx)
|
(define-syntax (cond-let stx)
|
||||||
(syntax-case stx (else)
|
(syntax-case stx (else)
|
||||||
[(cond-let [[identifierᵢ conditionᵢ] . bodyᵢ] ... [else . else-body])
|
[(cond-let [[identifierᵢ conditionᵢ] . bodyᵢ] ... [else . else-body])
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide if-let)
|
(provide if-let)
|
||||||
|
|
||||||
|
(require (for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax-rule (if-let [variable condition] true-branch false-branch)
|
(define-syntax-rule (if-let [variable condition] true-branch false-branch)
|
||||||
(let ([tmp condition])
|
(let ([tmp condition])
|
||||||
(if tmp
|
(if tmp
|
||||||
|
|
5
it.rkt
5
it.rkt
|
@ -1,7 +1,8 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide it)
|
(provide it)
|
||||||
(require racket/stxparam)
|
(require racket/stxparam
|
||||||
|
(for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax-parameter it
|
(define-syntax-parameter it
|
||||||
(λ (stx)
|
(λ (stx)
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
#lang racket
|
#lang racket/base
|
||||||
|
|
||||||
(provide when-let)
|
(provide when-let)
|
||||||
|
|
||||||
|
(require (for-syntax racket/base))
|
||||||
|
|
||||||
(define-syntax-rule (when-let [variable condition] . body)
|
(define-syntax-rule (when-let [variable condition] . body)
|
||||||
(let ([variable condition])
|
(let ([variable condition])
|
||||||
(when variable
|
(when variable
|
||||||
|
|
Loading…
Reference in New Issue
Block a user