Program Example60; { This program demonstrates the AnsiUpperCase function } Uses sysutils; Procedure Testit (S : String); begin Writeln (S,' -> ',AnsiUpperCase(S)) end; Begin Testit('AN UPPERCASE STRING'); Testit('Some mixed STring'); Testit('a lowercase string'); End.