view dmd/Keyword.d @ 172:5a9a88e919f9

BuildHelper updated to use src and lib from dmd2/, not copies
author korDen
date Fri, 08 Oct 2010 20:23:30 +0400
parents e28b18c23469
children
line wrap: on
line source

module dmd.Keyword;

import dmd.common;
import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}