Dear All,
I am looking for a reference in Stata documentation where the local macro * (star) is defined.
Thank you, Sergiy
I am looking for a reference in Stata documentation where the local macro * (star) is defined.
Thank you, Sergiy
clear all program define foobar display `"`0'"' display `"`1'"' display `"`2'"' display `"`*'"' end foobar first(x) second(y)
. foobar first(x) second(y) first(x) second(y) first(x) second(y) first(x) second(y)
clear all program define foobar display `"`0'"' display `"`1'"' display `"`2'"' display `"`*'"' macro list _all end foobar first(x) second(y)
. do "/var/folders/xr/lm5ccr996k7dspxs35yqzyt80000gp/T//SD53419.000000" . clear all . . program define foobar 1. display `"`0'"' 2. display `"`1'"' 3. display `"`2'"' 4. display `"`*'"' 5. macro list _all 6. end . . foobar first(x) second(y) first(x) second(y) first(x) second(y) first(x) second(y) S_level: 95 F1: help advice; F2: describe; F7: save F8: use S_ADO: BASE;SITE;.;PERSONAL;PLUS;OLDPLACE S_StataSE: SE S_FLAVOR: Intercooled S_OS: MacOSX S_OSDTL: 10.13.6 S_MACH: Macintosh (Intel 64-bit) _2: second(y) _1: first(x) _0: first(x) second(y) . end of do-file
. program define foobar . program define foobar 1. display `"`0'"' 2. display `"`*'"' 3. end . . foobar first( x ) "second(y)" first( x ) "second(y)" first( x ) second(y) .
Comment