Changeset 47 for branches/DelphiToC/Example.pas
- Timestamp:
- Aug 9, 2010, 12:48:14 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DelphiToC/Example.pas
r46 r47 3 3 uses System, Crt; 4 4 5 procedure Pokus(A: Byte);5 function Max(A, B: Byte): Byte; 6 6 var 7 7 S: Byte; 8 8 begin 9 WriteLn;10 WriteLn;9 if A > B then Result := A 10 else Result := B; 11 11 end; 12 12
Note:
See TracChangeset
for help on using the changeset viewer.