When I write:
it runs the first time, but the second time it returns an error "program already defined."
So instead I write:
but the first time I run that it returns an error "program foo not defined yet."
What can I do to get out of this? Many thanks.
Code:
program define foo set obs 100 end
So instead I write:
Code:
program drop foo program define foo set obs 100 end
What can I do to get out of this? Many thanks.
Comment