/* Dummy infinite loop program for Examples 13.23, 13.24, 13.25, and 13.27.
    Compile and leave executable in ./loop
    Run several copies, then try: ./skill.{perl,tcl,py,rb} loop
*/

int main() {
    while (1) sleep(10);
}
