Tagged Questions
14
votes
3answers
450 views
Ruby Print Inject Do Syntax
Why is it that the following code runs fine
p (1..1000).inject(0) { |sum, i|
sum + i
}
But, the following code gives an error
p (1..1000).inject(0) do |sum, i|
sum + i
end
warning: do not ...
5
votes
1answer
417 views
Lisp DO variable syntax reasoning
In Peter Seibel's Practical Common Lisp, he gives this example:
(do ((nums nil) (i 1 (1+ i)))
((> i 10) (nreverse nums))
(push i nums))
I can see how it works, using nums inside the loop ...
3
votes
3answers
479 views
Haskell: The last statement in a 'do' construct must be an expression
Hey, sorry to dump the error message here but I've tried everything I can find and nothing seems relevant. This code is generating the error:
import System.Environment
import System.Directory
...
1
vote
1answer
143 views
Haskell IO sharing parameters
In Haskell, is it possible to share user input from one IO function to the other?
For instance, if I had:
main = do
putStrLn "Give me a number!"
my_stuff <- getLine
...
0
votes
3answers
618 views
Problem with do construct in haskell
I'm trying to learn Haskell and want to write a small program which prints the content of a file to the screen. When I load it into GHCi I get the following error:
The last statement in a 'do' ...