Skip to content
fergusq edited this page Mar 17, 2013 · 1 revision

Script contains list of models. Each model contains list of possibilities.

Example

start:                         # start is similar to main-function
    my " " red " " car;        # Note: add spaces between words

my: "my", "your";
red: "red", "green", "blue";
car: "car", "airplane";

Recursion

Example

Model "a" can return "a" or "aaa", but "aaaaaaaaaaaaaaaaaaa" is very rare.

a:
    "a" a,
    "a";
Clone this wiki locally