#!/bin/sh
#
# Compile and Execute Email DSLs
# H. Conrad Cunningham
# Created: 2018-02-01
#
echo  "Begin Email Message Builder internal DSL testing"
#
echo  "Compile Email Message Builder with Progressive Interface"
scalac EmailProgressive.scala
#
echo ""
echo  "Execute Email Message Builder with Progressive Interface test"
scala EmailProgressive
#
echo "Done!"
