Re: [IronPython] Preprocessor directives in IronPython 2.0

2008-12-15 Thread Curt Hagenlocher
Nope. Why do you think you want them? Or rather, what's wrong with this: debug = False def Main(): if debug: print 'DEBUG is set' else: print 'DEBUG is not set' On Mon, Dec 15, 2008 at 5:46 AM, Yash Ganthe yas...@gmail.com wrote: In C# we can code for conditional

Re: [IronPython] Preprocessor directives in IronPython 2.0

2008-12-15 Thread Dino Viehland
Of Curt Hagenlocher Sent: Monday, December 15, 2008 6:27 AM To: Discussion of IronPython Subject: Re: [IronPython] Preprocessor directives in IronPython 2.0 Nope. Why do you think you want them? Or rather, what's wrong with this: debug = False def Main(): if debug: print 'DEBUG is set