📄 pause.src
字号:
/*
** pause.src
** (C) Copyright 1988-1998 by Aptech Systems, Inc.
** All Rights Reserved.
**
** This Software Product is PROPRIETARY SOURCE CODE OF APTECH
** SYSTEMS, INC. This File Header must accompany all files using
** any portion, in whole or in part, of this Source Code. In
** addition, the right to create such files is strictly limited by
** Section 2.A. of the GAUSS Applications License Agreement
** accompanying this Software Product.
**
** If you wish to distribute any portion of the proprietary Source
** Code, in whole or in part, you must first obtain written
** permission from Aptech Systems.
**
**> pause
**
** Purpose: To pause for a specified number of seconds.
**
** Format: call pause(sec);
**
** Input: sec seconds to pause.
*/
proc (0) = pause(sec);
local ds,ts,dn;
ts = hsec;
ds = date;
ds = ds[3];
sec = sec - 0.025;
do while (hsec-ts)/100 < sec;
dn = date;
if dn[3] /= ds;
break;
endif;
endo;
endp;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -