Haskell lets you define functions like thrice, which accepts an element of type a
and returns a list of the element repeated three times, for any data type a
.
thrice :: a -> [a]
thrice x = [x, x, x]
Does Free Pascal allow type variables? If not, is there another way to do this in Free Pascal?
As a haskell person who doesn't know Pascal, this appears to be a similar thing. Sorry for not being able to expand.
http://wiki.freepascal.org/Generics