Repository URL to install this package:
{$mode objfpc} type generic tc<T> = class procedure p(data : T); end; tc1 = specialize tc<string>; procedure tc.p(data : T); begin readln(data); writeln(data); end; begin end.