I would like to use Haskell code in Agda, for example, something like a function that gives back a list of pairs of integers and strings.
I saw this documentation: https://agda.readthedocs.io/en/v2.6.1.1/language/foreign-function-interface.html
But I don't know how to map Haskell tuples to an Agda type, because for example in a mapping like
{-# COMPILE GHC APair = data ?????? #-}
I don't know how to fill the ????-s, as I don't have the definition of the tuple data type.
However, pairs are not listed at the builtin pairings either.
How should I proceed?