Distinguish stdout, printed result and stderr #11

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

Distinguish standard output (purple font in DrRacket), printed result (blue font) and standard error (red font).

What syntax should be used to indicate this? A special "output prefix"?

#lang debug repltest racket
(define (y) (displayln "hello") #R(+ 3 4))
> (y)
#out hello
#err (+ 3 4) = 7
#res 7
> (+ 3 4)
7 ;; #res by default
Distinguish standard output (purple font in DrRacket), printed result (blue font) and standard error (red font). What syntax should be used to indicate this? A special "output prefix"? ``` #lang debug repltest racket (define (y) (displayln "hello") #R(+ 3 4)) > (y) #out hello #err (+ 3 4) = 7 #res 7 > (+ 3 4) 7 ;; #res by default ```
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#11
No description provided.