Say I want to respond to “I want to wash the car.”
This works:
s: ( ~want ~to_infinitive ~verb * ~noun )
You have my permission.
So, what’s the parsing difference against these statements:
s: ( ~want ~to_infinitive _* )
s: ( @_0+ _~verb * _~noun )
You want to ‘_0 the ‘_1
If the second statement is
s: ( @_0+ * _~noun )
You want to do something to the ‘_0
That works, but I’ve not been able to get the ~verb/~noun combo to work in the second case.
I’m sure this is something fundamental I’m missing.
Thanks again!