motherdream
Language.root = Term.string("hello")
hello
Language.root = Term.string("ping").withEmit(x=>"pong")
ping
Term.Ping = Term.string("ping").withEmit(x=>"pong") Term.Pong = Term.string("pong").withEmit(x=>"ping") Language.root = Term.Ping.or([Term.Pong])
ping
back to the
dream