I have a file called hellox.ado that contains the following code:
Code:
program hellox version 15 mata: hello() end version 15 mata: void hello() { printf("test output\n") } end
Code:
clear all do hellox.ado
program hellox version 15 mata: hello() end version 15 mata: void hello() { printf("test output\n") } end
clear all do hellox.ado
Comment