-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpcn_test.ado
46 lines (37 loc) · 1.39 KB
/
pcn_test.ado
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*==================================================
project: test pcn adofile
Author: R.Andres Castaneda
----------------------------------------------------
Creation Date: 9 Aug 2019 - 10:49:50
==================================================*/
/*==================================================
0: Program set up
==================================================*/
program define pcn_test, rclass
syntax [anything(name=subcmd id="subcommand")], ///
[ ///
country(string) ///
Year(numlist) ///
REGions(string) ///
maindir(string) ///
type(string) ///
survey(string) ///
replace ///
vermast(string) ///
veralt(string) ///
MODule(string) ///
clear ///
pause ///
]
version 14
*---------- conditions
if ("`pause'" == "pause") pause on
else pause off
// ------------------------------------------------------------------------
// test
// ------------------------------------------------------------------------
noi mata: hello()
end
exit
/* End of do-file */
><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><