代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/108103/6186064
pas if.pas
{**************************}
{ FastScript v1.0 }
{ 'If' operator demo }
{**************************}
var
i: Integer;
procedure OK(n: Integer);
begin
ShowMessage(n);
end
www.eeworm.com/read/137290/13333016
txt install.txt
TABLE OF CONTENTS
I. Introduction
II. Manual installing of the FastReport packages
III. Recompiling FastReport Basic Edition and Standard Edition packages
IV. Recompiling FastReport Pro Edit
www.eeworm.com/read/108103/6185988
cpp dowhile.cpp
/****************************/
/* FastScript v1.0 */
/*'do..while' operator demo */
/****************************/
int i, j;
{
j = 1;
i = 0;
do
i++;
while (i != 10);
www.eeworm.com/read/108103/6185993
cpp array.cpp
/***************************/
/* FastScript v1.0 */
/* Arrays demo */
/***************************/
{
string ar[10];
for(int i = 0; i < 10; i++)
ar[i] = IntToStr
www.eeworm.com/read/108103/6186000
cpp while.cpp
/****************************/
/* FastScript v1.0 */
/*'while' operator demo */
/****************************/
{
int j = 1;
int i = 0;
while (i < 10)
{
j++;
In
www.eeworm.com/read/108103/6186001
cpp for.cpp
/****************************/
/* FastScript v1.0 */
/* 'For' operator demo */
/****************************/
int i;
void OK(int n)
{
ShowMessage(n);
}
{
for(i = 0; i
www.eeworm.com/read/108103/6186004
cpp if.cpp
/****************************/
/* FastScript v1.0 */
/* 'If' operator demo */
/****************************/
void OK(int n)
{
ShowMessage(n);
}
{
int i = 10;
if(i
www.eeworm.com/read/108103/6186011
js array.js
//***************************/
//* FastScript v1.0 */
//* Arrays demo */
//***************************/
var ar[10];
for(var i = 0; i < 10; i++)
ar[i] = IntToStr
www.eeworm.com/read/108103/6186019
js while.js
//****************************/
//* FastScript v1.0 */
//*'while' operator demo */
//****************************/
var j = 1, i = 0;
while (i < 10)
{
j++;
Inc(
www.eeworm.com/read/108103/6186020
js dowhile.js
//****************************/
//* FastScript v1.0 */
//*'do..while' operator demo */
//****************************/
var i, j;
j = 1;
i = 0;
do
i++;
while (i != 1