#!/bin/sh

awk 'BEGIN {
	for (x = 0; x <= 6.3; x += 0.1)
	    printf ("%g %g\n", x, sin (x));
    }'
    
