#!/bin/bash

TPROG=$(mktemp)
./ofc --sema-tree $1 | gfortran -x f77 - -o $TPROG && $TPROG
rm $TPROG
