home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 December
/
Chip_2001-12_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
CAJSCRTP.ZIP
/
demo_kylix
/
ILib.ifs
< prev
next >
Wrap
Text File
|
2001-05-23
|
246b
|
13 lines
unit ILib; // this is an example of how to use Attached script engines.
var
TestVal: Integer;
function Test: string;
begin
writeln('ILib.Test called');
result := 'Testing';
TestVal := TestVal + 1;
end;
Begin
End.