代码搜索:FastScript
找到约 496 项符合「FastScript」的源代码
代码结果 496
www.eeworm.com/read/338159/3320015
cpp case.cpp
/****************************/
/* FastScript v1.0 */
/* 'Case' operator demo */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
i = 0;
www.eeworm.com/read/338159/3320017
cpp localvar.cpp
/****************************/
/* FastScript v1.0 */
/* Local variables demo */
/****************************/
int i;
void OK(int i)
{
ShowMessage(i);
i = 11;
}
{
i
www.eeworm.com/read/338159/3320019
cpp for1.cpp
/****************************/
/* FastScript v1.0 */
/* 'For' operator demo 1 */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
j = 1;
www.eeworm.com/read/338159/3320020
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/3320022
cpp while.cpp
/****************************/
/* FastScript v1.0 */
/*'while' operator demo */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
j = 1;
www.eeworm.com/read/338159/3320023
cpp for2.cpp
/****************************/
/* FastScript v1.0 */
/* 'For' operator demo 2 */
/****************************/
int i, j;
void OK(int n)
{
ShowMessage(n);
}
{
j = 1;
www.eeworm.com/read/338159/3320027
cpp string.cpp
/****************************/
/* FastScript v1.0 */
/* String demo */
/****************************/
{
string s = "Hello World!\n\rIt's working!";
int j = 0;
fo
www.eeworm.com/read/338159/3320028
cpp set.cpp
/****************************/
/* FastScript v1.0 */
/* Set demo */
/****************************/
int i, j;
string s;
{
s = "Hello World!\n\rIt's working!";
www.eeworm.com/read/338159/3320030
cpp case.cpp
/****************************/
/* FastScript v1.0 */
/* 'Case' operator demo */
/****************************/
int i, j;
{
i = 0;
switch (i)
{
case 1: j = 1;
www.eeworm.com/read/338159/3320032
cpp localvar.cpp
/****************************/
/* FastScript v1.0 */
/* Local variables demo */
/****************************/
int i;
void OK(int i)
{
ShowMessage(i);
i = 11;
}
{
i