p30 moreop.ox

来自「时间序列分析中著名的OxMetrics软件包」· OX 代码 · 共 12 行

OX
12
字号
#include <oxstd.h> // include the Ox standard library header

main()                // function main is the starting point
{
	decl x1, x2;
	x1 = x2 = 0;
	
	println(x1, " ", ++x1);  //increment x1 by 1
	println(x1, " ", --x1);  //decrement x1 by 1
	x1 = <0,1,2>;
	println(x1, " ", !x1, " ", !!x1);
}

⌨️ 快捷键说明

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