⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 _writenum.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 1.0.0  03apr2002
program define _writenum
	version 8

	args filehndl attrib

	if "`.`attrib'.isa'" == "double" {
		if `.`attrib'' < . {
			file write `filehndl' ".`attrib' =  `.`attrib''" _n
			exit					/* EXIT */
		}
	}

	file write `filehndl' ".`attrib' = (.)" _n

end


/*
   Given a file handle and an attribute, writes to filehandle

	.<attrib> = <attrib_value>

   If attrib_value is missing writes,

	.<attrib> = (.)

   Missings cannot be directly assigned to numeric class values because the
   the . for missing conflicts with the . as a class name separator.


*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -