I have a file called hellox.ado that contains the following code:
Then I use the following code to call it in a do-file:
Why doesn't it output "test output"?
Code:
program hellox
version 15
mata: hello()
end
version 15
mata:
void hello()
{
printf("test output\n")
}
end
Code:
clear all do hellox.ado

Comment