24 lines
200 B
MQL5
24 lines
200 B
MQL5
|
|
|
|
|
|
|
|
|
|
input int birth_year = 1992 ;
|
|
int age;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void OnStart()
|
|
{
|
|
|
|
Print (" before : " , age );
|
|
age = 32;
|
|
Print(" after : ", age);
|
|
age = 50 ;
|
|
Print( " after after : " , age);
|
|
|
|
|
|
}
|