Pederator
Mechanical
- Nov 23, 2012
- 45
Hello fellas,
I have got one simple question - is there in MC possibility to define a constant in such a manner (eg.):
p := r := 10
instead of writing this in two lines:
p := 10
r := 10
or
p := 10
r := p
?
I assume that p and r will always have the same value, but for readability of the further code I want to have a different names of these constants. So, must I write 2 lines?
I have got one simple question - is there in MC possibility to define a constant in such a manner (eg.):
p := r := 10
instead of writing this in two lines:
p := 10
r := 10
or
p := 10
r := p
?
I assume that p and r will always have the same value, but for readability of the further code I want to have a different names of these constants. So, must I write 2 lines?