#!/usr/bin/bash

set -e
set -x

### Compile and run a simple MPI application

mpif77 -o hello hello.f

mpirun -n 1 ./hello
