#!/bin/sh cat print.py echo "Running..." time ./print.py > /dev/null cat print.pl echo "Running..." time ./print.pl > /dev/null cat cll1-print.c echo "Compiling..." time make cll1-print echo "Running..." time ./cll1-print > /dev/null cat printf.c echo "Compiling..." time make printf echo "Running..." time ./printf > /dev/null cat puts.c echo "Compiling..." time make puts echo "Running..." time ./puts > /dev/null cat fputs.c echo "Compiling..." time make fputs echo "Running..." time ./fputs > /dev/null