comparison dmdscript_tango/identifier.d @ 3:8363a4bf6a8f

rename package: dmdscript to dmdscript_tango
author saaadel
date Sun, 24 Jan 2010 18:33:05 +0200
parents 55c2951c07be
children
comparison
equal deleted inserted replaced
2:cca96fbcc1f8 3:8363a4bf6a8f
16 * 16 *
17 * For a C++ implementation of DMDScript, including COM support, 17 * For a C++ implementation of DMDScript, including COM support,
18 * see www.digitalmars.com/dscript/cppscript.html. 18 * see www.digitalmars.com/dscript/cppscript.html.
19 */ 19 */
20 20
21 module dmdscript.identifier; 21 module dmdscript_tango.identifier;
22 22
23 import dmdscript.script; 23 import dmdscript_tango.script;
24 import dmdscript.value; 24 import dmdscript_tango.value;
25 25
26 /* An Identifier is a special case of a Value - it is a V_STRING 26 /* An Identifier is a special case of a Value - it is a V_STRING
27 * and has the hash value computed and set. 27 * and has the hash value computed and set.
28 */ 28 */
29 29