ARC Pro

Upgrade to ARC Pro

ARC Pro is your passport to a world of endless possibilities in robot programming, waiting for you to explore.

PRO
USA
#10  

An example of what it can do:

The JavaScript


var doc = nlp(EZB.GetVar("$TheSentence"))
var pastTense = doc.sentences().toPastTense().out()
EZB.SetVar("$pastTense", pastTense)

The EZ-Script code


$TheSentence = "The dog will eat his food"
ControlCommand("Compromise",ScriptStartWait)
Print($pastTense)

The resulting output


Start
1: $TheSentence = "The dog will eat his food"
3: ControlCommand("Compromise",ScriptStartWait)
5: Print($pastTense)
> The dog ate his food
Done (00:00:00.2999611)

This is cool!