lib/scripts/polyml-version
author berghofe
Tue, 04 Jul 2006 15:22:54 +0200
changeset 19986 3e0eababf58d
parent 17419 16df5a5eef68
child 20748 4bcf492c6c9d
permissions -rwxr-xr-x
- nominal_permeq.ML is now loaded before nominal_package.ML - methods and tactics in nominal_permeq.ML are now defined inside structure NominalPermeq, therefore the names in the method_setup section had to be changed

#!/usr/bin/env bash
#
# $Id$
#
# polyml-version --- determine Poly/ML runtime system version

echo -n polyml

if [ -x "$ML_HOME/poly" ]; then
  "$ML_HOME/poly" -noDisplay -r /dev/null | head -n 1 | \
    sed -n 's,^Poly/ML RTS version [^ ]*\(-[^ ]*\).*$,\1,p'
fi