Tagged Questions

LET introduces a list of local variables

learn more… | top users | synonyms

60
votes
2answers
10k views

Purpose of “let expression” (LetExpr) in the Java compiler?

The Java compiler seems to have support for let expressions in com.sun.tools.javac.tree.* (look for LetExpr). One comment in JCTree even mentions some syntax (let int x = 3; in x+2) which of ...
19
votes
3answers
2k views

Haskell: Where vs. Let

I am new to Haskell and I am very confused by Where vs. Let. They both seem to provide a similar purpose. I have read a few comparisons between Where vs. Let but I am having trouble discerning when to ...
17
votes
3answers
3k views

Let vs. Binding in Clojure

I understand that they're different since one works for setting *compile-path* and one doesn't. However, I need help with why they're different. let creates a new scope with the given bindings, but ...
12
votes
6answers
707 views

Clojure's 'let' equivalent in Scala

Often I face following situation: suppose I have these three functions def firstFn: Int = ... def secondFn(b: Int): Long = ... def thirdFn(x: Int, y: Long, z: Long): Long = ... and I also have ...
12
votes
5answers
419 views

Why does let require a vector?

I never really thought about this until I was explaining some clojure code to a coworker who wasn't familiar with clojure. I was explaining let to him when he asked why you use a vector to declare ...
10
votes
4answers
251 views

In Haskell, when do we use in with let?

In the following code, the last phrase i can put a "in" in front. Will it change anything? Another question: If i decide to put "in" in front of the last phrase, do i need to indent it? I tried ...
10
votes
1answer
215 views

Lisp simple question

I have some not understanding actions from gnu clisp Suppose, I have some code like (let ((x "Hi!"))(print x)). If I execute it from console (like, clisp fileName.lisp) I see Hi! But, when I ...
10
votes
2answers
2k views

Redefining a let'd variable in Clojure loop

OK. I've been tinkering with Clojure and I continually run into the same problem. Let's take this little fragment of code: (let [x 128] (while (> x 1) (do (println x) (def x (/ x ...
10
votes
5answers
982 views

let vs def in clojure

I want to make a local instance of a Java Scanner class in a clojure program. Why does this not work: ;gives me: count not supported on this type: Symbol (let s (new Scanner "a b c")) but it ...
9
votes
3answers
197 views

Strange type error in Haskell let-expression — what's the issue?

I came across a frustrating something in Haskell today. Here's what happened: I wrote a function in ghci and gave it a type signature ghci complained about the type I removed the type signature ...
9
votes
4answers
168 views

Better to use “and” or “in” when chaining “let” statements?

I realize this is probably a silly question, but... If I'm chaining a bunch of let statements which do not need to know each other's values, is it better to use and or in? For example, which of ...
7
votes
2answers
113 views

Why no destructing in def form?

In a let form (Clojure here) I can doing something like (let [[u s v] (svd A)] (do-something-with u v)) where svd returns a list of length three. This is a very natural sort of thing to do, so ...
7
votes
2answers
137 views

What does “let () = ” mean in Ocaml?

There are codes like let () = print_string "something" in fn in some OCaml codes. What does this mean? Is there special meaning on "()"? or Is it same meaning as print_string "something"; fn
7
votes
1answer
253 views

Variable scope + eval in Clojure

In Clojure, (def x 3) (eval '(prn x)) prints 3, whereas (let [y 3] (eval '(prn y))) and (binding [z 3] (eval '(prn z))) generate an 'Unable to resolve var' exception. According to ...
6
votes
6answers
773 views

What's the point of lambda in scheme?

I am learning scheme. I know how to use both lambda and let expressions. However I'm struggling to figure out what the point is of using lambda. Can't you do everything with let that you can with ...
5
votes
1answer
133 views

What are the performance side effects of defining functions inside a recursive function vs outside in F#

If you have a recursive function that relies on some other function what is the preferred way to implement that? 1) outside the recursive function let doSomething n = ... let rec doSomethingElse x ...
5
votes
3answers
401 views

Confused by “let” in Clojure

I just started playing with Clojure, and I wrote a small script to help me understand some of the functions. It begins like this: (def *exprs-to-test* [ "(filter #(< % 3) '(1 2 3 4 3 2 1))" ...
5
votes
1answer
414 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 ...
4
votes
2answers
112 views

Clojure: let scope and function return value

I am having some troubles figuring how to use the "let" form. In the example below, I would like to locally bind the value "cols" in order to work on it later in the function. What I am noticing, ...
3
votes
1answer
80 views

Scheme: Getting cdr without the parens

This is probably a simple thing I'm missing, but I'm trying to get the cdr of a pair and every call to say (cdr (cons 'a '5)) comes back as (5). I sort of get why that is, but how can I get the it to ...
3
votes
3answers
138 views

Why won't `let` work for naming internal recursive procedures?

Consider the following implementation of a function to compute factorial: [1] (define fac-tail (lambda (n) (define fac-tail-helper (lambda (n ac) (if (= 0 n) ac ...
3
votes
1answer
382 views

Binding multiple related variables in Clojure without nested let

I want to use the value of a variable to compute the value of another variable in the same let statement. Is there a way to do this in Clojure without using nested lets? Nested let solution: (let [x ...
3
votes
3answers
809 views

Avoid expansion of * in bash builtin function let

I have a problem with a bash script. I have to use the operator * to multiplicate. Instead the script bugs me with expansion and using as operator the name of the script itself. I tried with single ...
2
votes
3answers
82 views

eval a list into a let on clojure

My problem is the next, i try to evaluate a list with some vars using a let to asign values to this vars if i do (def a (list * 'x 'y)) and (let [x 3 y 3] (eval a)) I have a CompilerException ...
2
votes
2answers
48 views

Scheme Confusing of Let and Let*

(let ((x 2) (y 3) (let ((x 7) (z (+ x y))) (* z x))) With the code above, why is the answer 35, not 70? In the second let, x is 7 so z should be 7 + 3 = 10, and then the result should ...
2
votes
1answer
93 views

Inconsistance of scoping between “type …and ” and “let …and ” in Ocaml

I wonder why in Ocaml, "let.. and ..." does not have the same kind of scoping as "type ... and ...": The folowing one is OK, t2 in the same scoping as t1 # type t1 = t2 and t2 = int;; This ...
2
votes
1answer
125 views

Common Lisp: statements not executing in order? (defvar within a let statement)

I've tried to reduce it to the minimal example. The code runs without an error, producing the expected output. But it gives me a warning that my first variable is undefined. It seems that the second ...
2
votes
4answers
149 views

Trying to understand “let” in scheme

I'm trying to expand a simple fibonacci function, and I need to use the values for each term more than once. So, I figured I'd use let to hold onto the values. But, I'm not getting what I think I ...
2
votes
1answer
119 views

Lisp Recreating a Temporary Variable

I'm having a bit of trouble with Lisp. What i'm attempting to do, is keep track of the amount of times a number appears in x number of lists. However, running this over and over again, lisp isn't ...
2
votes
1answer
355 views

Semantics of F# let statement with comma

I'm learning F#. I started by looking over the F# samples from Microsoft. I ran across this statement: let line1,line2 = use sr = System.IO.File.OpenText @"test.txt" let line1 = ...
1
vote
2answers
104 views

Why can't I use a dictionary with Entity Framework

Dictionary<int, string> D = new Dictionary<int, string>(); D.Add(0, "Insert"); D.Add(1, "Update"); D.Add(2, "Delete"); using (SerasMacEntity SME = new SerasMacEntity()) { var SQL = ...
1
vote
1answer
103 views

Is it possible to declare mutable and immutable values/bindings simultaneously?

For example I want to declare let len, (*mutable*) i = if s.Length >= 2 && s.[0] = '0' && (s.[1] = 'x' || s.[1] = 'X') then (s.Length - 2, 2) ...
1
vote
1answer
146 views

Setting Vim Options with Variables

I've a question that should be fairly simple, but I have yet to find a solution for. I'm editing my .vimrc and would like to set an option using results saved in a variable. For example, I would ...
1
vote
5answers
179 views

Workaround for let keyword?

How can I get this var i = 0; var codes = [1, 2, 3]; for (var i = 0; i < codes.length; ++i) { setTimeout(function(){alert(codes[i]);},100); } To alert 1, 2 and 3 without using let keyword? ...
1
vote
2answers
176 views

LINQ to Populate a range

I can't figure out how to do the second part of this (the for/foreach) with a LINQ expressions and haven't found any similar examples with LINQ. rangeDays will be between about 5 and 200, and q1 is a ...
1
vote
1answer
404 views

Nested LINQ Method throwing a `Not Supported…` Exception

This is a follow up from here -->multiple-sorting-on-linq-nested-method . Basically, on let memberName = ... it is throwing this exception Method 'System.String MemberName(Int32)' has no supported ...
0
votes
2answers
51 views

Scheme let syntax error

(define (rec base height) (let ((product (* base height))(half 0.5)) (let ((sum (* product half))) (display "Area is") (display sum)))) let: expected only one expression after the ...
0
votes
2answers
215 views

How to let users select their roles on registration in Drupal 7?

I have created two more roles say A and B. I have radio buttons in the user_registration_form ,so that a user can select any one of the roles. I have figured out how to assign a role to a user on ...
0
votes
2answers
177 views

Haskell let in/where and if indentation

I have a function: isSimpleNumber :: Int -> Bool isSimpleNumber x = let deriveList = map (\y -> (x `mod` y)) [1 .. x] filterLength = length ( filter (\z -> z == 0) ...
0
votes
2answers
136 views

Problems with Let semantics in Linq-to-Objects and Linq-to-XML

Please consider the following sample, consisting of a definition of a nested XElement and a pair of Linq expressions. The first expression, which works as expected, iteratively fetches the first and ...
0
votes
1answer
75 views

Scheme let* as nested unary lets

As an exercise I am trying to rewrite strings representing source code for let* as nested unary lets. Here is my best effort: (define let*→nested-unary-lets (match-lambda (`(let* (()) ...
0
votes
2answers
99 views

Scheme rewrite let* as nested unary lets

I have written a function match-rewriter that is essentially match-lambda except that it returns its argument if no match is found: (define-syntax match-rewriter (syntax-rules () ((_ (patt ...
0
votes
1answer
244 views

How to implement let as a lambda function in Scheme

As an exercise I am trying to define let as a lambda function something like this: (define let_as_lambda (lambda (var) (lambda (value body) (var body) val))) And I am hoping to ...
-1
votes
1answer
100 views

Ocaml equivalent for Lisp's let*?

I'd rather use let ... and ... and ... in than nested let's when possible, but the normal let syntax doesn't allow this for expressions that depend on each other. Not allowed: let encrypt password = ...