[plt-scheme] Formatting Code

From: Robby Findler (robby at cs.uchicago.edu)
Date: Fri Sep 14 10:14:40 EDT 2007

If you want to do that programmatically, you'll want (lib
"pretty.ss"). Otherwise, as SK points out, you can just hit return a
few times and let DrScheme do the indentation.

Robby

On 9/13/07, Kilik <kilik3000 at gmail.com> wrote:
> Is there a command in Dr. Scheme for formatting code?
>
> For example something that turns this...
>
> (* 5 (+ 2 (/ 4 2) (/ 8 3)))
>
> ...into this
>
> (* 5
> (+ 2
> (/ 4 2)
> (/ 8 3)))
>
> -Thx
>
> _________________________________________________
>   For list-related administrative tasks:
>   http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>


Posted on the users mailing list.