📄 demo.plm
字号:
/* add MATH.LIB in Options\Compiler RL command line */
Demo: do;
$INCLUDE(MATH.DCL)
declare I byte;
declare J byte;
declare Arr(10) byte;
declare r real;
call InitRealMathUnit;
Loop:
J = 0;
do I = 1 to 10;
J = J+I;
Arr(I) = J;
end;
r = sin(1.57);
r = cos(1.57);
r = exp(2.00);
goto Loop;
end Demo;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -