From: "Randy W. Sims" Date: 2004-10-08T19:31:31+09:00 Subject: Re: quality of error messages Pe�a, Botp wrote: > 1. maybe we introduce optional endclass, endif, enddef Like another poster, I'm in the habit of writing the close marker immediately after the open marker. However, one style guide I sometimes follow is that if a block exceeds one "page" or if I have some deeply nested code, I will comment the end(s): class Foo def bar puts 'bar' end#bar end # class Foo or some variation on the theme.