LearnMQL5/Example 01.mq5
super.admin 6a3edd6cd7 convert
2025-05-30 15:03:27 +02:00

53 lines
No EOL
2.9 KiB
MQL5

//+------------------------------------------------------------------+
//| Test.mq5 |
//| Copyright © 2020 MhFx7, All Rights Reserved |
//| https://www.mql5.com/en/users/mhfx7 |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2020 MhFx7, All Rights Reserved"
#property link "https://www.mql5.com/en/users/mhfx7"
#property version "1.00"
#property script_show_inputs
//---
input bool IsMale=true;//Is a male or not?
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
string name="Tutku";
//---
int age=16;
//---
double weight=77.6;
//---
bool is_above_18=age>=18;
//---
string he_or_she;
//---
if(IsMale)
{
he_or_she="he";
}
else
{
he_or_she="she";
}
//---
if(is_above_18)
{
Print(name," is allowed to enter the party because ",he_or_she," is above 18, his age now=",age);
}
else
{
Print(name," is NOT allowed to enter the party because ",he_or_she," is below 18, his age now=",age," Kick his ass off the door !!!");
}
//---
}
//+------------------------------------------------------------------+