Add an animals guessing game example.

This commit is contained in:
Bob Nystrom
2015-11-29 09:43:47 -08:00
parent c46507d937
commit a38753d1d6
2 changed files with 89 additions and 1 deletions

View File

@ -356,8 +356,10 @@ def run_api_test(path):
def run_example(path):
# The guess number requires user input.
# Don't run examples that require user input.
if "animals" in path: return
if "guess_number" in path: return
run_script(WREN_APP, path, "example")