view dmd/Keyword.d @ 171:b080e62b16b4

Enhanced buildscript to simplify compiling for new users
author Abscissa
date Sun, 03 Oct 2010 17:55:10 -0400
parents e28b18c23469
children
line wrap: on
line source

module dmd.Keyword;

import dmd.common;
import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}