Skip to content

Instantly share code, notes, and snippets.

@adurpas
Created December 14, 2012 20:17
Show Gist options
  • Save adurpas/4288320 to your computer and use it in GitHub Desktop.
Save adurpas/4288320 to your computer and use it in GitHub Desktop.
// ISU laboratory session #11, exercise #1.2
#include <sys/wait.h>
#include <iostream>
using namespace std;
int main()
{
int i;
for (i=0; i<5; i++)
{
cout << "Tick!" << endl;
sleep(1);
}
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment