Add a #:separator option #12

Open
opened 2016-03-31 12:53:24 +01:00 by SuzanneSoy · 0 comments
SuzanneSoy commented 2016-03-31 12:53:24 +01:00 (Migrated from github.com)

Argument can be a string or regexp or function operating on a peeking-input-stream.

(define-syntax (> stx) (syntax-local-introduce #'(set! x 3)))
(define x 0)

> (let ([x 4]) (cons x (let ([x 5]) > x)))
> '(4 . 5)
> ;; ====
> x
> 3
> 
> ```
> ```

```#lang repltest #:separator ";; ====" racket
(define > 3)

> ;; Should show "3" when running the whole file
> ;; ====
> 
> > 3
> > (< > 4)
> > # t
> > 
> > ```
> > ```
Argument can be a string or regexp or function operating on a peeking-input-stream. ```#lang repltest #:separator ";; ====" racket (define-syntax (> stx) (syntax-local-introduce #'(set! x 3))) (define x 0) > (let ([x 4]) (cons x (let ([x 5]) > x))) > '(4 . 5) > ;; ==== > x > 3 > > ``` > ``` ```#lang repltest #:separator ";; ====" racket (define > 3) > ;; Should show "3" when running the whole file > ;; ==== > > > 3 > > (< > 4) > > # t > > > > ``` > > ```
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: suzanne.soy/repltest#12
No description provided.