Hi,

Consider:

#lang scribble/manual

@(require
  scribble/core
  scribble/eval)

@interaction[
 (printf "a~n~nb")]

Shows one newline only.
It produces:

| > (printf "a~n~nb")
| a
| b

It is not a big problem.
I can write:

@interaction[
 (printf "a~n ~nb")]

which produces:

| > (printf "a~n~nb")
| a
|
| b

Nevertheless:
why looses (printf "a~n~nb")
the second newline?

Jos

PS: This is with DrRacket, version 6.7 [3m]

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to