Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 22nd, 2010 | Syntax: None | Size: 0.19 KB | Hits: 74 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. lags = read("file.csv")
  2.  
  3. nLags = sizeof(lags);
  4.  
  5. j = 0;
  6.  
  7. for(i = 0; i < nLags; ++i)
  8. {
  9.         future = getCurrentTime() + lags[j];
  10.        
  11.         if(getCurrentTime() < future);
  12.  
  13.         sendEvent();
  14.  
  15.         ++j;
  16. }