IntToStr does accept Int64.
Printable View
IntToStr does accept Int64.
I got the bass dll error :(.
Oh sorry, misread it. I'm going to try something, hold on.
Edit: I tried a buffer...doesn't work..:(.
That stuff has been there for a while...
thanks alot freddy, had a few problems at first but then i found a very good "how to obtain scar 3.21" tutorial and im all good. just srl now... :)
your the bomb!
Hey Freddy, is it possible to add in support for recursion, or is that just something the current script engine can't handle?
Erm, i'm pretty sure it does support recursion if it's what i think it is..
BTW, Freddy1990: http://en.wikipedia.org/wiki/Recursi...puter_science)
-ignore this-
It does allow for recursion!!
SCAR Code:function RecursionTest(I: Integer): Integer;
begin
if (I < 1) then
begin
Result := I;
Exit;
end;
Writeln(I);
Result := RecursionTest(I - 1);
end;
begin
RecursionTest(10);
end.
~NS
Ah, whoops. I forgot to put in an exit statement. Silly me. I'm much more used to working with Java than SCAR.
lol yes, I think thats already been in SCAR for a very long time. QuickSort's algorithm uses recursion.
~NS
What does fixscar.exe do? is it for people with the .dll errors?
Yeah, it downloads the missing DLLs.
Also, possibly, could you please add in capablities in SCAR? Or is that just not possible?
e.g:scar Code:function IsIn(s: String): Boolean;
begin
Result := s in ['A'..'z'];
end;
:)