what means the dunction:
InToStr
$
I've got a script, i doest works as it has to work i think it's something with this can you guys help me figure this out?;) :duh:
Printable View
what means the dunction:
InToStr
$
I've got a script, i doest works as it has to work i think it's something with this can you guys help me figure this out?;) :duh:
If you mean IntToStr, then that takes any number, an integer, and makes it readable by string related functions.
Example:
var
number:Integer;
stringednumber:String;
number:=5;
stringednumber:=(IntToStr(number));
IntToStr, Integer to String. Integer is number and you write texts as string to scar's debug screen. So, StrToInt, just makes integer to string.
PHP Code:program New;
var Number:INTEGER;
begin
repeat
Number:=Number + 1
//Number is integer, it makes it to string (inttostr)
writeln(INTtoSTR(NUMBER)) //Writes number as string
wait(500)
until(Number>10)
end.