-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Labels
Description
RiveScript rs = new RiveScript();
rs.stream(new String[] { //
"! version = 2.0", //
"+ a", //
"- {lowercase}A{/lowercase}", //
"+ b", //
"- {lowercase}<get v>{/lowercase}"});
rs.sortReplies();
rs.setUservar("test", "v", "B");
System.out.println(rs.reply("test", "a"));
System.out.println(rs.reply("test", "b"));output is:
a
B
It reproduced on 0.8.* and 0.9.* versions