#!/usr/bin/bash

set -e
set -x

### Compile and run a simple MPI application

mpif90 -o hello hello.f90

mpirun -n 1 ./hello
