Viewing 2 posts - 1 through 2 (of 2 total)
I would like to mention two other languages compiling to MSIL, Boo[/url] and Cobra[/url]
They are both using Python-style blocks, that is Endless and without curly brackets.
Boo compiles directly to MSIL,...
November 13, 2009 at 5:45 am
#1078853
And all those curly brackets. Should they be typed to the right
if (wosh) {
..statement;
}
or aligned
if (wosh)
{
The second style is used in the Microsoft community.
The first style is used by strong...
November 13, 2009 at 1:02 am
#1078727