#!/bin/bash

# build MLton version of primes program: primes-mlton

rm -f tmp$$.sml
cat primes.sig primes.sml main.sig main.sml mlton.sml > tmp$$.sml
mlton -default-type int64 -default-type word64 -output primes-mlton tmp$$.sml
rm -f tmp$$.sml
