1#!/usr/bin/env bash
2#
3# Author: Makarius
4#
5# DESCRIPTION: invoke Scala compiler within the Isabelle environment
6
7isabelle_admin_build jars || exit $?
8
9isabelle_scala scalac -Dfile.encoding=UTF-8 \
10  -classpath "$(platform_path "$ISABELLE_CLASSPATH")" "$@"
11