#!/usr/bin/awk -f
#
#	File: fixfort
#	Usage: fixfort oldfile.f >newfile.f
#
# 	Very simple awk program to remove bang comments from Fortran files.
#	Shouldn't be necessary very often: most Fortran compilers started
#	supporting bang comments in the early 80's.
#
$1 != "!" { print }
