Hi, you've reached the website of Mark Menard, Freemason, developer, businessman, photographer, motorcyclist and all around nice guy.
The main joy in my life is Sylva, my loving partner and friend. (You will see plenty of pictures of her. Also check out our site.) My professonal career is running a consulting firm concentrating on business automation and custom software. I enjoy software development, motorcycles, photography, dancing, freemasonry and travel.
Here you will find galleries of my latest photos, thoughts on software development, freemasonry, the occassional politics, and other things. Enjoy your time here.
Mark
An ongoing photographic study of Freemasonry.
To contact Mark send an email to mark@mjm.net. You will receive an auto response from my mail server to verify you're not a spammer.
© Mark Menard 2002-2007
I think there's a bug...
I'm on Groovy 1.0 because I have a project that doesn't run under 1.5 for reasons yet unresolved. I think there is a bug in Binding because I think the following code should fail to run, but it doesn't:
try { def binding = new Binding () def someVariable = "some value" binding.setVariable ("someVariable", someVariable) c = { true } c.setBinding (binding) } println someVariablesomeVariable should not be defined outside the scope of the try block, but it is. Remove the binding stuff from the try block and it does fail saying someVariable is not defined.
Mark