initial checkin from subversion

This commit is contained in:
Tretter
2017-02-07 20:03:49 +00:00
commit ed54469421
108 changed files with 1999 additions and 0 deletions

17
delay1.cc Normal file
View File

@@ -0,0 +1,17 @@
#include <stdio.h>
#include <unistd.h>
// #include <iostream.h>
// #include <math.h>
int main()
{
int i,z;
for (i=0;i<100;i++)
{
// z = pow(2,i);
// cout << i << " " << z << ":";
usleep(100200);
}
return 0;
}