-- filename: hash21.adb 2:22PM 10/31/95 -- This is a dummy hash function; it always hashes to 1. We need a hash -- function in order to instantiate the hashtable package. with expr; function hash21(N: expr.symbol) return Positive is begin return 1; end hash21;