view dmd/Keyword.d @ 85:8e69d041a99d

Previous commit didn't compile. Fixed.
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 16:16:30 +0100
parents 10317f0c89a5
children e28b18c23469
line wrap: on
line source

module dmd.Keyword;

import dmd.TOK;

struct Keyword
{
	string name;
    TOK value;
}