Parallel Rogue-like benchmark

Justin Whear justin at economicmodeling.com
Fri Aug 23 09:57:15 PDT 2013


On Fri, 23 Aug 2013 09:48:54 -0700, H. S. Teoh wrote:

> Seriously, I don't understand what's with this obsession with line count
> metrics. Here's a 2-line version of the above code:
> 
> struct Tile { int X = void; int Y = void; int T = void; }
> struct Room { int X = void; int Y = void; int W = void; int H = void;
> int N = void; }
> 
> Frankly, the fact that line counts are used at all has already
> decremented the author's credibility for me.
> 
> 
> T

Let's get that character count down :)

struct Tile { int X=void, Y=void, T=void; }
struct Room { int X=void, Y=void, W=void, H=void, N=void; }


More information about the Digitalmars-d mailing list