代码搜索:FastScript

找到约 496 项符合「FastScript」的源代码

代码结果 496
www.eeworm.com/read/108103/6185986

cpp string.cpp

/****************************/ /* FastScript v1.0 */ /* String demo */ /****************************/ { string s = "Hello World!\n\rIt's working!"; int j = 0; fo
www.eeworm.com/read/108103/6186009

js string.js

//****************************/ //* FastScript v1.0 */ //* String demo */ //****************************/ var s = "Hello World!\r\nIt's working!"; var j = 0; fo
www.eeworm.com/read/108103/6186027

vb string.vb

' FastScript v1.0 ' String demo dim i, j dim s as String s = "Hello World!\r\nIt's working!" j = 0 for i = 1 to Length(s) if s[i] = " " then Inc(j)
www.eeworm.com/read/137290/13334507

pas fs_idbreg.pas

{******************************************} { } { FastScript v1.8 } { Registration unit } {
www.eeworm.com/read/137290/13334562

pas fs_ibdereg.pas

{******************************************} { } { FastScript v1.8 } { Registration unit } {
www.eeworm.com/read/137290/13334590

pas fs_iibxreg.pas

{******************************************} { } { FastScript v1.8 } { Registration unit } {
www.eeworm.com/read/137290/13334595

pas fs_iadoreg.pas

{******************************************} { } { FastScript v1.8 } { Registration unit } {
www.eeworm.com/read/108103/6186026

vb doloop.vb

' FastScript v1.0 ' 'do-loop' operator demo dim i, j j = 1 i = 0 do j = j + 1 Inc(i) loop while i 10 ShowMessage(j)
www.eeworm.com/read/108103/6186040

vb defparams.vb

' FastScript v1.0 ' Default params demo sub p1(i, j = 1) ShowMessage(IntToStr(i) + " " + IntToStr(j)) end sub dim i p1(0) p1(1, 2) p1(0) i = 0 Inc(i) I
www.eeworm.com/read/108103/6186052

pas defparams.pas

{**************************} { FastScript v1.0 } { Default params demo } {**************************} procedure p1(i: Integer; j: Integer = 1); begin ShowMessage(IntToStr(i) +