# Lair Configuration DSL Case Study (Python 3)
# Global Function Sequence DSL: Test Driver (for builer08)
# H. Conrad Cunningham

# Developed for CSci 658, Software Language Engineering, Spring 2018

#234567890123456789012345678901234567890123456789012345678901234567890

# 2018-02-27: (V1) adapted from my Lua code rules08.lua

# Import Configuration builder module
from builder08 import *

print("Begin test of builder08.py DSL\n")

config = load_dsl("rules08.py")

print("Final " + str(config))
