in reply to Re: Readable HTML tables
in thread Readable HTML tables

print table(Tr([ map td([ qw/foo bar baz/]), 1..10 ])); table { row { cell qw/foo bar baz/ } for 1..10 };
It's just that I prefer {{}} to (([([])])), that's all... Unlike you, I don't find the CGI-ish solution perfectly readable.

Juerd # { site => 'juerd.nl', plp_site => 'plp.juerd.nl', do_not_use => 'spamtrap' }

Replies are listed 'Best First'.
Re^3: Readable HTML tables
by Aristotle (Chancellor) on Aug 26, 2003 at 10:02 UTC
    You don't have to break their being pure functions to get simple curlies - they can easily enough be rewritten to take a block. The curlies do look a little less busy. If you're consistent and sufficiently generous with your whitespace the paren-brackets are no less readable though, IMHO.

    Makeshifts last the longest.