Does anyone have a list of bold words used in scar and what they do?
There are a few of them i dont understand like "try".
Does anyone have a list of bold words used in scar and what they do?
There are a few of them i dont understand like "try".

Here is a good one for try.
~RonCode:program TryExampleByRon; const numbers = '123a'; begin ClearDebug; try // Try this code if(StrToInt(Numbers) <> 0)then WriteLn('Numbers is greater than or less than 0!'); finally // This code will run if there is an error in try code or not. WriteLn('Finally! the script is over!'); except // If the above code doesn't work, then run this code. WriteLn('Please insert only numbers into the string, numbers!'); end; // end the try/except thing. end.![]()



Yeah, it's for catching errors that would normally make the script stop, and tell it to do something else instead.
That helped a lot but does anyone have a list of them all? I though of a few more like "div".
There are currently 1 users browsing this thread. (0 members and 1 guests)