Files
2025-10-09 22:06:54 +07:00

19 lines
943 B
Plaintext

//+------------------------------------------------------------------+
//| test.mq5 |
//| Copyright 2025, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2025, MetaQuotes Ltd."
//#property link "https://www.mql5.com"
#property link "mailto:bellphil.play@gmail.com"
#property version "1.00"
//#property script_show_inputs
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
Print("Hello, MQL5 World!", " I have written my own program. ", "Hooray!");
}
//+------------------------------------------------------------------+