Stata Programs


Definition

Stata programs are defined using the program command.

program foo
  args a b
  if "`b'"=="" {
    di "Expected 2 arguments (got 1)"
    exit
  }
  gen `a'=`b'
end


CategoryRicottone