view dmd/Keyword.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents e28b18c23469
children
line wrap: on
line source

module dmd.Keyword;

import dmd.common;
import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}