Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
fixed quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
codeanticode committed Aug 30, 2013
1 parent b4d09a5 commit 7d8117b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ import codeanticode.eliza.*;
Eliza eliza;
eliza = new Eliza(this);

String response = eliza.processInput(Hello);
String response = eliza.processInput("Hello");
println(response);
```

You can use the readScript() function to change the script that Eliza uses to construct its answers:

```java
eliza.readScript(script);
eliza.readScript(http://chayden.net/eliza/script");
eliza.readScript("script");
eliza.readScript("http://chayden.net/eliza/script");
```

To go back to the default script that is loaded when Eliza is initialized, call the readDefaultScript() function.
Expand Down

0 comments on commit 7d8117b

Please sign in to comment.