Haskell: parse error on input ‘=’ in where
up vote
3
down vote
favorite
I am new in Haskell and practicing Algorithm in Haskell follow the book "Pearls of Functional Algorithm Design"
This is the algo to find the smallest natural number not in a given finite set X of natural numbers
import Data.List
import Data.Array
minfree xs = if null ([0..b-1] \ us)
then head ([b..] \ vs)
else head ([0..b-1] \ us)
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Pff the compiler error like this
Prelude Data.Array Data.List> :load 01_the_smallest_free_number.hs
[1 of 1] Compiling Main ( 01_the_smallest_free_number.hs, interpreted )
01_the_smallest_free_number.hs:11:29: error:
parse error on input ‘=’
Perhaps you need a 'let' in a 'do' block?
e.g. 'let x = 5' instead of 'x = 5'
|
11 | b = div (length xs) 2
| ^
Failed, no modules loaded.
Well obveriously add let
before b
is not the right answer I've tried.
Then I replaced all b
to div (length xs) 2
that works, so seems here is the problem to be, but I don't get it
haskell
add a comment |
up vote
3
down vote
favorite
I am new in Haskell and practicing Algorithm in Haskell follow the book "Pearls of Functional Algorithm Design"
This is the algo to find the smallest natural number not in a given finite set X of natural numbers
import Data.List
import Data.Array
minfree xs = if null ([0..b-1] \ us)
then head ([b..] \ vs)
else head ([0..b-1] \ us)
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Pff the compiler error like this
Prelude Data.Array Data.List> :load 01_the_smallest_free_number.hs
[1 of 1] Compiling Main ( 01_the_smallest_free_number.hs, interpreted )
01_the_smallest_free_number.hs:11:29: error:
parse error on input ‘=’
Perhaps you need a 'let' in a 'do' block?
e.g. 'let x = 5' instead of 'x = 5'
|
11 | b = div (length xs) 2
| ^
Failed, no modules loaded.
Well obveriously add let
before b
is not the right answer I've tried.
Then I replaced all b
to div (length xs) 2
that works, so seems here is the problem to be, but I don't get it
haskell
2
Bad identation causes the problem I guess.
– Sereja Bogolubov
Nov 11 at 8:35
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am new in Haskell and practicing Algorithm in Haskell follow the book "Pearls of Functional Algorithm Design"
This is the algo to find the smallest natural number not in a given finite set X of natural numbers
import Data.List
import Data.Array
minfree xs = if null ([0..b-1] \ us)
then head ([b..] \ vs)
else head ([0..b-1] \ us)
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Pff the compiler error like this
Prelude Data.Array Data.List> :load 01_the_smallest_free_number.hs
[1 of 1] Compiling Main ( 01_the_smallest_free_number.hs, interpreted )
01_the_smallest_free_number.hs:11:29: error:
parse error on input ‘=’
Perhaps you need a 'let' in a 'do' block?
e.g. 'let x = 5' instead of 'x = 5'
|
11 | b = div (length xs) 2
| ^
Failed, no modules loaded.
Well obveriously add let
before b
is not the right answer I've tried.
Then I replaced all b
to div (length xs) 2
that works, so seems here is the problem to be, but I don't get it
haskell
I am new in Haskell and practicing Algorithm in Haskell follow the book "Pearls of Functional Algorithm Design"
This is the algo to find the smallest natural number not in a given finite set X of natural numbers
import Data.List
import Data.Array
minfree xs = if null ([0..b-1] \ us)
then head ([b..] \ vs)
else head ([0..b-1] \ us)
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Pff the compiler error like this
Prelude Data.Array Data.List> :load 01_the_smallest_free_number.hs
[1 of 1] Compiling Main ( 01_the_smallest_free_number.hs, interpreted )
01_the_smallest_free_number.hs:11:29: error:
parse error on input ‘=’
Perhaps you need a 'let' in a 'do' block?
e.g. 'let x = 5' instead of 'x = 5'
|
11 | b = div (length xs) 2
| ^
Failed, no modules loaded.
Well obveriously add let
before b
is not the right answer I've tried.
Then I replaced all b
to div (length xs) 2
that works, so seems here is the problem to be, but I don't get it
haskell
haskell
asked Nov 11 at 7:47
Aries_is_there
1518
1518
2
Bad identation causes the problem I guess.
– Sereja Bogolubov
Nov 11 at 8:35
add a comment |
2
Bad identation causes the problem I guess.
– Sereja Bogolubov
Nov 11 at 8:35
2
2
Bad identation causes the problem I guess.
– Sereja Bogolubov
Nov 11 at 8:35
Bad identation causes the problem I guess.
– Sereja Bogolubov
Nov 11 at 8:35
add a comment |
1 Answer
1
active
oldest
votes
up vote
7
down vote
accepted
This is bad indentation:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Since the second equality is indented more than the first, it continues the first one, as if we wrote
where (us, vs) = (partition (<b) xs) b = div (length xs) 2
triggering the error.
You instead want:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
so that both equations are indented in the same way.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
7
down vote
accepted
This is bad indentation:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Since the second equality is indented more than the first, it continues the first one, as if we wrote
where (us, vs) = (partition (<b) xs) b = div (length xs) 2
triggering the error.
You instead want:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
so that both equations are indented in the same way.
add a comment |
up vote
7
down vote
accepted
This is bad indentation:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Since the second equality is indented more than the first, it continues the first one, as if we wrote
where (us, vs) = (partition (<b) xs) b = div (length xs) 2
triggering the error.
You instead want:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
so that both equations are indented in the same way.
add a comment |
up vote
7
down vote
accepted
up vote
7
down vote
accepted
This is bad indentation:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Since the second equality is indented more than the first, it continues the first one, as if we wrote
where (us, vs) = (partition (<b) xs) b = div (length xs) 2
triggering the error.
You instead want:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
so that both equations are indented in the same way.
This is bad indentation:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
Since the second equality is indented more than the first, it continues the first one, as if we wrote
where (us, vs) = (partition (<b) xs) b = div (length xs) 2
triggering the error.
You instead want:
where (us, vs) = (partition (<b) xs)
b = div (length xs) 2
so that both equations are indented in the same way.
answered Nov 11 at 8:04
chi
72.4k280134
72.4k280134
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246799%2fhaskell-parse-error-on-input-in-where%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Bad identation causes the problem I guess.
– Sereja Bogolubov
Nov 11 at 8:35