Commit UEA [20/06/2018]

This commit is contained in:
Pierre8rTeam
2018-06-20 15:35:55 +02:00
parent f2422666dd
commit 25b50c07ff
637 changed files with 1151 additions and 0 deletions
Binary file not shown.
+21
View File
@@ -0,0 +1,21 @@
//+------------------------------------------------------------------+
//| Test.mq5 |
//| Copyright 2018, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2018, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#include "Dictionary.mqh"
CDictionary dict;
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
if(dict.ContainsKey("Car"))
printf("Car always exists.");
else
dict.AddObject("Car",new CCar());
}
//+------------------------------------------------------------------+