vote up 3 vote down star
1

Is it possible to implement a closure in Erlang?

For example, how would I translate this snippet from Scheme?

(define (make-adder n)
  (lamdba (x) (+ x n)))

I've tried the following, but I'm clearly missing something.

make_adder(n) ->
    fun (x) -> x + n end.

Compiling this gives the error

Warning: this expression will fail with a 'badarith' exception
flag

60% accept rate
Guys, why's this being upvoted? I'm embarrassed at how lame my question is! – grifaton Sep 24 at 22:48

2 Answers

vote up 10 vote down check

You can't add atoms. Variables start with Capital Letters in erlang. words starting with lower case letters are atoms.

In other words your problem is not related to funs at all, you just need to capitalize your variable names.

link|flag
Thanks! I'm deleting the question and going to bed! – grifaton Sep 19 at 22:59
Can't delete question... just going to bed. – grifaton Sep 19 at 23:00
Leave the question and change the title to 'Why do I get "this expression will fail with a 'badarith' exception"?' or something along those lines. That way all the other erlang beginners who'll make this mistake (I know I did) will easily find it when searching for the message. – sepp2k Sep 19 at 23:03
vote up 3 vote down
make_adder(N) ->
  fun (X) -> X + N end.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.