LET introduces a list of local variables

learn more… | top users | synonyms

-1
votes
0answers
82 views

Haskell - determine set of free and bounded variables of a function

I have to determine the set of free and bounded variables of the function s1 and s2: s1 := \x -> if y then \z -> (x \y -> y) else (\z -> w) x So, for s1 I'll write: FV(s1):= FV (y) ∪ ...
0
votes
3answers
67 views

Haskell - List Comprehension - get Input-Elements

I have some problem with list comprehension, if the input is a list. In these all III excercises it's not allowed to use: map, filter and concat!!! Part I Requirements: A funktion f1 gets a list ...
0
votes
1answer
29 views

Scheme: When to use let, let*, and letrec? [duplicate]

What is the difference between let, let*, and letrec? Please give thorough explanations and examples.
0
votes
3answers
37 views

Scheme: reverse is not taking any affect

(define key (lambda (w) (reverse w) (if (null? w) 0 (let ((k 33)) (+ (* (ctv(car w)) k) (key (cdr w))) )))) outputs the same thing as this: (define key (lambda (w) ...
1
vote
1answer
48 views

Left to Right Binding Order in Let Form

I am working through an example of destructuring in the Joy of Clojure, and I cam across an example that surprised me. Both of these produce the same output: (let [range-vec (vec (range 10)) [a b c ...
3
votes
2answers
55 views

Series of let definitions

I'm a beginner in OCaml, and i have a problem with series of let, like: let x = myFun y in let z = myFun x in ... But, between the lets, i use Hashtbl.iter and other functions that returns unit. If ...
0
votes
1answer
35 views

BASH let command..gives wrong result on padded numbers

The following code prints 4 as expected: let x=21 let x=$x-1 echo $x But the following prints 16: let x=000021 let x=$x-1 echo $x Could someone explain the difference?
0
votes
2answers
41 views

eval scheme function with quote

I am trying to evaluate a formula in scheme: (define formula '(if (or (equal? '?country 'United-States) (equal? '?country 'England)) #t #f)) (define (eval-formula ...
2
votes
1answer
149 views

c# define LET in LINQ

I have multiple LINQ queries that uses the same LET variables, i would like to predefine these somehow. IQueryable<RouteQueryModel> query = (from b in db.routes let avg_rating = ...
4
votes
1answer
165 views

Does Haskell allow a let expression for multiple pattern matchings?

Let's say I have a function which does some computation, with several patterns; implemented in the form of pattern matching. Most of these patterns do (along with other things different from one to ...
1
vote
2answers
92 views

Clojure swap! not working inside a map function in let bindings

I have two sequences for comparison and I need to keep comparison results in a map, with data in the first sequence serving as keys and second as vals. Here comes sample code that works (def myAtom ...
0
votes
0answers
13 views

Global Lets in Schematron

Is there a way a defining a global let in Schematron? The reason why I'm asking this is because in every rule I specify, I keep repeating some code and it would be nice to have that code just in one ...
0
votes
1answer
103 views

let in strange behavior

I have the following program: mnr = [0,1,2,3,4,5,6] :: [Int] name = "Max Mustermann" :: String kzn = "e53X" :: String t1 = ("p1",(take 2.tail)mnr, (take 3.words.(let no n= name;in no))"No"); ...
0
votes
1answer
84 views

Clojure - a let in a macro won't work

I have created a macro which creates a named dispatcher with 3 associates functions get-dispatcher, set-dispatcher and call-dispatcher to work with the dispatcher (they get a dispatching function, add ...
5
votes
2answers
84 views

Confused by the difference between let and let* in Scheme

Can anyone explain the difference simply? I don't think I understand the concept from the textbooks/sites I have consulted.
1
vote
2answers
83 views

Scheme let statement

In scheme which is a functional programming language, there is no assignment statement. But in a let statement (let ((x 2)) (+ x 3)) You are assigning 2 to x, so why doesn't this violate the ...
0
votes
1answer
69 views

value not of type array

I have created a function that is supposed to have lexical variables of type ARRAY: (defun give-rank-vec (dir-1 dir-2 file-1 file-2) (let* ((cm-size (array-dimension (Swc (make-ff-array dir-1 ...
2
votes
1answer
109 views

Irrefutable pattern failed inside of Let statement

I'm learning haskell and am currently trying to parse Integers and Floats from strings. However, when trying my readNum function on "342" or any "number" that doesn't have a single or more ...
3
votes
1answer
73 views

Avoiding monomorphism in let bindings without type annotation

I've got some code using types to disambiguate instances (the real code is using GHC.TypeLits singletons for type tags, but I don't think that's germane) and I'd like to use a let binding to avoid ...
0
votes
1answer
26 views

undefined variable in let*

For some reason, when I try to C-c C-k the program containing the code: (defun give-rank-vec (file-1 file-2) (let* ((cm-size (array-dimension (Swc (make-ff-array file-1) ...
0
votes
1answer
77 views

basic Clojure syntax

Let's say I have a macro, inside the macro I have this let: let[ elements# //stuff// #newlist (for [e# elements#] (if (number? e#) (**add e# to #newlist**))) ] Since I am having a really ...
1
vote
1answer
54 views

Encoding let-expressions in Z3

The following code encodes a "record" with two fields array-fld and blist-fld. I've defined the update functions for these fields, and then asserted a property that should be true (but which z3 ...
1
vote
1answer
94 views

Looping through a “let”-list in Clojure?

if I had an unknown number of argument that I want to bind to each other with a "let", like: let [a "hello" b 55 ] If I bind let inside a function/macro or similar and I want to loop though the ...
0
votes
1answer
82 views

haskell nested let in lambda

I must miss something but I can't see why this contrived example doesn't work: test1 :: Int test1 = let g = \s -> s + s f = \u -> let h = \t -> t + t h' ...
0
votes
2answers
90 views

Iteratively create local variables?

I have created a function that takes an arbitrarily long list of numbers as an argument. From this list, I wish to create matrices locally using let. The matrices will have rows and columns based on ...
0
votes
2answers
90 views

Learning Lisp. Can't seem to get a value from one function and use it within another

I'm trying to find the maximum number within a list, then do something with it: (defun maxList (l) (if (= (length l) 1) (first l) (if (> (first l) (maxList (rest l))) ...
12
votes
4answers
311 views

GHCi “let” — what does it do?

I'd appreciate is someone could point to docs on what "let" does in GHCi, or failing that, explain it convincingly :-). So far as I can tell, "let" (without "in") is not part of the Haskell language ...
1
vote
1answer
118 views

Haskell Parse error on 'let' [closed]

So I'm new to Haskell and I have to program Rabin Karps algorithm. I feel like my answer should work, but I keep getting a "parse error on 'let'" error when I compile. Could anybody help me out. Here ...
8
votes
1answer
152 views

let var or var to let

In the last couple of months, I've been learning a lot about JavaScript. Having abused the languages for years, I dare say that I now have a better understanding of the language and I've come to love ...
0
votes
1answer
101 views

Clojure conditional statement with multiple recursive calls [duplicate]

Possible Duplicate: Implementing a Minimax Algorithm in Clojure - conditional function with multiple recursive calls Here's what I'm trying to accomplish: Iterate over all of the spots. ...
5
votes
4answers
87 views

Block encapsulation vs. local encapsulation - let

When I have data relevant to a function that is independent of its arguments, when should I favor block encapsulation over local encapsulation? When should I use: (let [hello "Hello "] (defn ...
1
vote
2answers
38 views

I think I have a scope issue? [scheme]

I'm trying to write a program to calculate GPA that takes a list of grades, and outputs GPA. (as practice, not homework) test case: (GPA? '(A C B B)) 3.0 here's my best guess: (define a 4.0) ...
4
votes
2answers
143 views

Recursion inside let function

I'm confused as to how def and let bind variables differently. Can someone explain to me why this works: (def leven (memoize (fn [x y] (cond (empty? x) (count y) (empty? y) (count x) ...
1
vote
2answers
104 views

lisp iterative function always returns nil

this function is supposed to count the number of times that the element 'a' appears in a list, but is not working: (defun iter-a_count (lst) (let ((count 0)) (dolist (x lst) ...
0
votes
1answer
251 views

Bad Syntax with let in LISP

I keep getting this error when trying to run the code: (let ((exp lambda (x y) (if (= y 1) x (* (exp x (- y 1)) x))))) Error: let: bad syntax in: (let ((exp lambda (x y) (if (= y 1) x (* (exp x (- ...
2
votes
1answer
68 views

What is the 'message return type please?

I am following the elisp introduction. Very first chapters. Here is two exemples I've copied/pasted from the html book. I've evaluated both forms, and here I copie/paste the returned value and the ...
5
votes
1answer
120 views

Why does this code using shadowing `let` bindings hang?

Running this code: j = let x = 4 in let x = x * x in x in the interpreter: ghci> j ... no response ... hangs with very little CPU utilization. Why is this? I expected j = 16.
1
vote
1answer
359 views

SAS let statement: refer to a cell value?

In SAS, is it possible to refer a %let statement to a value located in a database? For instance, the value of my n in %let n=50 depends on some value calculated in one of my databases, e.g., first ...
4
votes
3answers
148 views

Is it possible to modify let bindings?

I want to find out how to change the value of a variable declared within a let binding of a Clojure function. Below is the code that I'm using. I want the function to return java.lang.String object, ...
11
votes
2answers
225 views

How is `let` implemented in Clojure and what is its overhead?

I can see 2 ways of implementing let bindings. First, as known from SICP, let may be implemented as lambda function. This is convenient and simple, but taking into account the fact that each lambda ...
0
votes
2answers
165 views

Scheme ill-formed special form let

I am trying to write a scheme program which is Dijkstra's Shortest Algorithm. In a procedure when I am relaxing the edges I get the error that ;Ill-formed special form: (let (...) ()) Code of ...
1
vote
3answers
205 views

Why are bindings introduced by 'let' limited in scope?

In Lisp (I am still learning Lisp with SBCL), local variables are declared with let, and the scope is only within that expression. Why is that? Unlike in other imperative languages like ...
0
votes
2answers
131 views

javascript let not working in various browsers

let doesnt't work in some browsers. Not in their interpeters/ web consoles either. Why? (originally I thought there was an inconsistency b/t the browser interpeter and the jsFiddle, but it turns ...
1
vote
3answers
801 views

Scope/order of evaluation of nested `let .. in ..` in OCaml

I have a little problems here that I don't 100% understand: let x = 1 in let x = x+2 in let x = x+3 in x I know the result of this expression is 6, but just want to make sure the order of ...
1
vote
1answer
622 views

How to nest let statements in Haskell?

I'm trying to nest a couple let statements, but I'm getting syntax errors that don't make sense to me. I'm really new to Haskell programming so I'm sure it's something I just don't understand ...
1
vote
1answer
199 views

I need help converting between the let form and unnamed procedure form

im trying to convert from a let-form to an unamed procedure form and i just can't get the hang of it. the let procedure is this. (define max-recursive (lambda (lst) (if (null? (cdr lst)) ...
2
votes
2answers
160 views

elisp: boundp in let

how can check a variable is defined before or not with in let construct.? (let (((if (boundp 'a) 'a 'dummy) t)) (message "I made this work")) what I am trying to do is to ...
13
votes
2answers
255 views

What is the scope of let when used without in?

In a Haskell tutorial I ran across the following code: do [...] let atom = [first] ++ rest return $ case atom of Note that the let expression does not have an in block. What is the scope of ...
3
votes
2answers
243 views

Using the “let” kewword in a LINQ Query with EF 4.3

I have simple LINQ problem that I can't figure out. I have a table Users and a table Employees. One User can have 0...n employees. I'd like to do something like this: var result = from u in ...
3
votes
4answers
137 views

How are let-forms evaluated?

let-forms are allowed to contain several expressions inside: (let ((x 4)) x (+ x 1)) returns 5. How is this expression evaluated?

1 2