#!/bin/sh
# Compile provided Java files, keeping class files under `build/`.

javac --source-path code -d build "$@"