Two ideas
Posted: Wed Jan 17, 2007 8:24 am
I am a novice. I have two ideas. Please don't laught at me if you think it's stupid.
1) Function that return multiple values. This may be convenient in some cases. It seems only Python allow returning values like this :
(varC, varD) = function()
2) Allow compiling with different mode, eg. fast/normal/debug. Where fast mode have least checking, debug mode have more checking. In other words, allow user to exclude some code fragments from compiling. And without hurting readability too much.
What do you think ?
1) Function that return multiple values. This may be convenient in some cases. It seems only Python allow returning values like this :
(varC, varD) = function()
2) Allow compiling with different mode, eg. fast/normal/debug. Where fast mode have least checking, debug mode have more checking. In other words, allow user to exclude some code fragments from compiling. And without hurting readability too much.
What do you think ?