代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/338159/3320033
cpp defparams.cpp
/****************************/
/* FastScript v1.0 */
/* Default params demo */
/****************************/
void OK(int i = 1, int j = 1)
{
ShowMessage(IntToStr(i) + " " + In
www.eeworm.com/read/338159/3320041
cpp while.cpp
/****************************/
/* FastScript v1.0 */
/*'while' operator demo */
/****************************/
{
int j = 1;
int i = 0;
while (i < 10)
{
j++;
In
www.eeworm.com/read/338159/3320051
js string.js
//****************************/
//* FastScript v1.0 */
//* String demo */
//****************************/
var s = "Hello World!\r\nIt's working!";
var j = 0;
fo
www.eeworm.com/read/338159/3320056
js case.js
//****************************/
//* FastScript v1.0 */
//* 'Case' operator demo */
//****************************/
var i, j;
i = 0;
switch (i)
{
case 1: j = 1;
www.eeworm.com/read/338159/3320061
js while.js
//****************************/
//* FastScript v1.0 */
//*'while' operator demo */
//****************************/
var j = 1, i = 0;
while (i < 10)
{
j++;
Inc(
www.eeworm.com/read/338159/3320085
pas localvar.pas
{**************************}
{ FastScript v1.0 }
{ Local variables demo }
{**************************}
var
i: Integer;
procedure OK(i: Integer);
begin
ShowMessage(i);
i
www.eeworm.com/read/338159/3320106
pas is.pas
{**************************}
{ FastScript v1.0 }
{ 'is' operator demo }
{**************************}
var
o: TObject;
p: TPersistent;
begin
o := TObject.Create;
p := T
www.eeworm.com/read/338159/3320016
cpp array.cpp
/***************************/
/* FastScript v1.0 */
/* Arrays demo */
/***************************/
int i, j;
string ar[10], s;
void OK(string s)
{
ShowMessage(s);
www.eeworm.com/read/338159/3320034
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/338159/3320040
cpp bmp.cpp
/**************************}
{ FastScript v1.0 }
{ Bitmap demo }
{**************************/
void MakePattern(TBitmap b)
{
for (int i = 0; i < b.Width; i++)
for