Nie zakładać, jakiego rodzaju błąd pojawi się, ale wyobrażam sobie, że jest coś takiego:
Prelude> let x = 2
Prelude> let y = 7
Prelude> [1 .. (logBase x y)]
<interactive>:1:7:
No instance for (Floating Integer)
arising from a use of `logBase' at <interactive>:1:7-17
Possible fix: add an instance declaration for (Floating Integer)
In the expression: (logBase x y)
In the expression: [1 .. (logBase x y)]
In the definition of `it': it = [1 .. (logBase x y)]
Problem polega na tym, że:
Prelude> :t logBase
logBase :: (Floating a) => a -> a -> a
zwraca typ w klasie Pływające , podczas gdy inne zmienne w twoim programie (1, "x", "y") są typu integralnego.
Zakładam, że chcesz ciąg liczb całkowitych?
Prelude> :set -XNoMonomorphismRestriction
Prelude> let x = 2
Prelude> let y = 42
Prelude> [1 .. truncate (logBase x y)]
[1,2,3,4,5]
Użyj obcięte, celing lub podłogi.