blob: 6cc205f3c87c368f6cacd485e003f973ec6c923d (
plain)
1
2
3
4
5
6
7
8
9
10
|
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.
|