代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/338159/3320053
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/338159/3320058
js bmp.js
//**************************}
//{ FastScript v1.0 }
//{ Bitmap demo }
//{**************************/
function MakePattern(b)
{
for (var i = 0; i < b.Width; i++)
f
www.eeworm.com/read/338159/3320087
pas set.pas
{**************************}
{ FastScript v1.0 }
{ Set demo }
{**************************}
var
i, j: Integer;
s: String;
begin
s := 'Hello World!'#13#10'It''
www.eeworm.com/read/338159/3320096
pas string.pas
{**************************}
{ FastScript v1.0 }
{ String demo }
{**************************}
var
i, j: Integer;
s: String;
begin
s := 'Hello World!'#13#10'It''
www.eeworm.com/read/338159/3320021
cpp repeat.cpp
/****************************/
/* FastScript v1.0 */
/*'do..while' operator demo */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
j = 1;
www.eeworm.com/read/338159/3320094
pas defparams.pas
{**************************}
{ FastScript v1.0 }
{ Default params demo }
{**************************}
procedure p1(i: Integer; j: Integer = 1);
begin
ShowMessage(IntToStr(i) +
www.eeworm.com/read/338159/3320103
pas repeat.pas
{**************************}
{ FastScript v1.0 }
{ 'Repeat' operator demo }
{**************************}
var
i, j: Integer;
begin
j := 1;
i := 0;
repeat
j := j + 1
www.eeworm.com/read/338159/3320089
pas while.pas
{**************************}
{ FastScript v1.0 }
{ While operator demo }
{**************************}
var
i, j: Integer;
begin
j := 1;
i := 0;
while i < 10 do
beg
www.eeworm.com/read/338159/3320090
pas case.pas
{**************************}
{ FastScript v1.0 }
{ 'Case' operator demo }
{**************************}
var
i, j: Integer;
begin
i := 0;
case i of
1: j := 1;
2.
www.eeworm.com/read/338159/3320092
pas for1.pas
{**************************}
{ FastScript v1.0 }
{ 'For' operator demo 1 }
{**************************}
var
i, j: Integer;
begin
j := 1;
for i := 9 downto 0 do
Inc(j