I’m not being able to compare a user input with a multiple word input after the match is successful.
this is how I am doing it:
concept: ~test [two_word]
topic: ~testTopic [test]
u: (test _~test)
^some_macro(‘_0)
and then:
outputmacro: some_macro(^test)
{
if(^test?~test){
good
}else{
bad
}
}
if i input ‘test two word’ it matches with the rule, but then responds bad.
I’d like to know how to fix this.
Thank you