Say I have the following script:
CONCEPT: ~stuff(“the coffee” “the tea and cookies” )
t: Name your preference please. ... $s = ^pick(~stuff)
u: ( I prefer _~stuff ) ^if ( ‘_0 = $s ) { do something }
The ^if condition will never turn true because of different processing by CS:
:variables user
... $s = the_tea_and_cookies (underscored string)
:variables match
.... _0 = the tea and cookies
Am I right in the above? If yes, how could the matching be managed? Many thanks.