//+------------------------------------------------------------------+ //| 111.mq4 | //| Copyright © 2006, MetaQuotes Software Corp. | //| http://www.metaquotes.net | //+------------------------------------------------------------------+ #property copyright "Copyright © 2006, MetaQuotes Software Corp." #property link "http://www.metaquotes.net" //+------------------------------------------------------------------+ //| script program start function | //+------------------------------------------------------------------+ int start() { int i; while (true) { for (i=0; i<10000000; i++) { if ( i == 0) Print(TimeCurrent() , "Seconds ",Seconds() ); } } //---- //---- return(0); } //+------------------------------------------------------------------+