代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/108103/6186043
pas localvar.pas
{**************************}
{ FastScript v1.0 }
{ Local variables demo }
{**************************}
var
i: Integer;
procedure OK(i: Integer);
begin
ShowMessage(i);
i
www.eeworm.com/read/108103/6186045
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/108103/6186046
pas nestedproc.pas
{**************************}
{ FastScript v1.0 }
{ Nested procedure demo }
{**************************}
procedure OK(i: Integer);
procedure DoShow;
begin
ShowMessage(i);
www.eeworm.com/read/108103/6186047
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/108103/6186048
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/108103/6186051
pas forms1.pas
{**************************}
{ FastScript v1.0 }
{ Forms demo 1 }
{**************************}
// Form1 is predefined object
// - the main form of this application
begin
www.eeworm.com/read/108103/6186054
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/108103/6186058
pas file.pas
{**************************}
{ FastScript v1.0 }
{ Files demo }
{**************************}
var
fs: TFileStream;
s: String;
begin
fs := TFileStream.Create('test
www.eeworm.com/read/108103/6186059
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/172193/9721147
dof comexample.dof
[FileVersion]
Version=7.0
[Compiler]
A=8
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=0
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
U