result: integer;
implementation
{$R *.DFM}
function TForm1.gameing(x: integer):string;
begin
randomize;
result := random(100); <-----┐
if x = (result mod 2) then <-----┴이 두 부분에서 에러가 나네요
>>>>>[Error] Unit1.pas(42): Incompatible types: 'String' and 'Integer'
뭐가 문제인가요???
자동적으로 선언하니까요
그리고 에러 내용은 function 의 리턴 값 타입은 string으로(gameing:string;) 되어 있는데 result에 integer값을 할당하니깐 나는 에러입니다