Talk:Variables: Difference between revisions

From Rosetta Code
Content added Content deleted
(→‎Constants: new section)
Line 5: Line 5:


So what's the plan? --[[User:Mwn3d|Mwn3d]] 01:24, 27 July 2009 (UTC)
So what's the plan? --[[User:Mwn3d|Mwn3d]] 01:24, 27 July 2009 (UTC)

== Constants ==

I'm wondering if it would be worth it to either add constants to this task, or make another, related task for declaring constants. Something like:
Show how to declare a constant (i.e. a variable that can't be changed after being declared).
(I'm thinking of constants as opposed to literals, like <code>const int x = 1</code> or even <code>#define x 1</code> rather than just <code>1</code>.) Y'know, the things that you use instead of magic numbers. -- [[User:Eriksiers|Eriksiers]] 17:41, 20 October 2009 (UTC)

Revision as of 17:41, 20 October 2009

Similarity to Scope modifiers

Is it just me or is this task really similar to Scope modifiers? Maybe they needs to be merged? I may be crazy. --Mwn3d 20:55, 16 July 2009 (UTC)

I see what you mean. --Paddy3118 02:49, 17 July 2009 (UTC)

So what's the plan? --Mwn3d 01:24, 27 July 2009 (UTC)

Constants

I'm wondering if it would be worth it to either add constants to this task, or make another, related task for declaring constants. Something like:

Show how to declare a constant (i.e. a variable that can't be changed after being declared).

(I'm thinking of constants as opposed to literals, like const int x = 1 or even #define x 1 rather than just 1.) Y'know, the things that you use instead of magic numbers. -- Eriksiers 17:41, 20 October 2009 (UTC)