123456789101112131415161718192021222324252627 |
- { %fail }
- { Source provided for Free Pascal Bug Report 4777 }
- { Submitted by "Phil H." on 2006-02-06 }
- { e-mail: [email protected] }
- unit tw4777;
- {$mode objfpc}
- interface
- uses
- SysUtils;
- function GetVal(astr : string) : Integer;
- implementation
- function GetVal(const astr : string) : Integer;
- begin
- Result := StrToInt(astr);
- end;
- end.
|