In C# we can code for conditional compilation such as:
public static void Main()
{
#if DEBUG
Console.WriteLine("DEBUG is defined");
#else
Console.WriteLine("DEBUG is not defined");
#endif
}Is it possible to do the same in IronPython? Does it support preprocessor directives? Thanks, Yash
_______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
