fpc/docs/refex/ex43.pp
1998-03-25 11:26:49 +00:00

11 lines
198 B
ObjectPascal

Program Example43;
{ Program to demonstrate the Odd function. }
begin
If Odd(1) Then
Writeln ('Everything OK with 1 !');
If Not Odd(2) Then
Writeln ('Everything OK with 2 !');
end.