p10-curso-completo/1_teoria/hello_world.mq5

18 lines
818 B
MQL5
Raw Permalink Normal View History

2025-06-23 07:42:54 -03:00
//+------------------------------------------------------------------+
//| hello_world.mq5 |
//| Copyright 2024, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2024, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property version "1.00"
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
Print("Hello world!");
}
//+------------------------------------------------------------------+