Haskell Tuple Size Limit

Warum kann ich in Haskell keine großen Tupel konstruieren? Warum ist die Tupelgröße begrenzt?

Prelude> (1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)

<interactive>:1:0:
    No instance for (Show
                       (t,
                        t1,
                        t2,
                        ...
                        t23))
      arising from a use of `print' at <interactive>:1:0-48
    Possible fix:
      add an instance declaration for
      (Show
         (t,
          t1,
          t2,
          ...
          t23))
    In a stmt of a 'do' expression: print it

Antworten auf die Frage(6)

Ihre Antwort auf die Frage