代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/338159/3320044
cpp file.cpp
/**************************}
{ FastScript v1.0 }
{ Files demo }
{**************************/
{
TFileStream fs = new TFileStream("test.txt", fmCreate);
String s = "
www.eeworm.com/read/338159/3320045
cpp if.cpp
/****************************/
/* FastScript v1.0 */
/* 'If' operator demo */
/****************************/
void OK(int n)
{
ShowMessage(n);
}
{
int i = 10;
if(i
www.eeworm.com/read/338159/3320050
js if.js
//****************************/
//* FastScript v1.0 */
//* 'If' operator demo */
//****************************/
var i = 10;
if(i == 10) { i = 1; }
if (i == 1) ShowMes
www.eeworm.com/read/338159/3320057
js is.js
//**************************}
//{ FastScript v1.0 }
//{ 'is' operator demo }
//{**************************/
var o = new TObject;
var p = new TPersistent;
if (o is TObjec
www.eeworm.com/read/338159/3320060
js forms.js
//**************************}
//{ FastScript v1.0 }
//{ Forms demo }
//{**************************/
var f, b;
function ButtonClick(Sender)
{
ShowMessage(Sender.Na
www.eeworm.com/read/338159/3320088
pas nestedproc.pas
{**************************}
{ FastScript v1.0 }
{ Nested procedure demo }
{**************************}
procedure OK(i: Integer);
procedure DoShow;
begin
ShowMessage(i);
www.eeworm.com/read/338159/3320093
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/6186053
pas bmp.pas
{**************************}
{ FastScript v1.0 }
{ Bitmap demo }
{**************************}
var
bmp: TBitmap;
procedure MakePattern(b: TBitmap);
var
i, j: Integ
www.eeworm.com/read/338159/3320024
cpp set.cpp
/****************************/
/* FastScript v1.0 */
/* Set demo */
/****************************/
int i, j;
string s;
void OK(int n)
{
ShowMessage(n);
}
{
www.eeworm.com/read/338159/3320025
cpp for.cpp
/****************************/
/* FastScript v1.0 */
/* 'For' operator demo */
/****************************/
int i;
void OK(int n)
{
ShowMessage(n);
}
{
for(i = 0; i