Why is it that everybody likes the follwowing curly braces syntax
function() {
implementations ;
}
I find the following much better to read (C style)
function()
{
implementations ;
}
kind regards,
Bart
function() {
implementations ;
}
I find the following much better to read (C style)
function()
{
implementations ;
}
kind regards,
Bart
Comment