#!/usr/bin/perl use strict; use warnings; use Inline 'C'; no_throw(); __END__ __C__ int no_throw() { int count; for(count=1;count<=500;count++){ printf("I will not throw paper airplanes in class.\n"); } return 0; }