Dear all,
I was working on a small program where i could provide my own options, and i found some odd behavior i never noticed before
If i used an option that that starts with "no" , the program doesnt seem to recognize it:
See the example below:
I dont recall having this problem before. Any suggestions?
Fernando
I was working on a small program where i could provide my own options, and i found some odd behavior i never noticed before
If i used an option that that starts with "no" , the program doesnt seem to recognize it:
See the example below:
Code:
capture program drop myp program myp syntax anything, [noway noseat onoway] display "Noway: `noway'" display "noseat: `noseat'" display "onoway: `onoway'" end myp asd, noway noseat onoway * the output Noway: noseat: onoway: onoway
Fernando

Comment