0
votes
5answers
79 views
Assigning the result of an expression to a variable
Working with DrScheme (language-- Pretty Big). Trying to pass the result of an expression to a variable that can later be used in another expression. Here is a simplified version of the problem:
…
1
vote
4answers
34 views
What is the difference between Latent type and Manifest type?
Could someone give me a clear distinction between latent and manifest type system?
0
votes
3answers
62 views
Scheme programming language
I am developing a small program in Scheme but I got stuck. Is there anything similar to Java's indexOf() that I could use in Scheme?
0
votes
3answers
74 views
Exclusive OR in Scheme
What is the exclusive or functions in scheme? I've tried xor and ^, but both give me an unbound local variable error.
Googling found nothing.
1
vote
1answer
39 views
A function in scheme to replace all occurences of an element in a list with another element
Hi
I am able to delete the element from a list.But I have no idea how to write a function in scheme to replace all occurences of an element in a list with another element.
Any help will be …
5
votes
9answers
286 views
Functional Programming: what is an “improper list” ?
Could somebody explain what an "improper list" is?
Note: Thanks to all ! All you guys rock!
5
votes
11answers
1k views
Learning LISP/Scheme - Interpreter
Hey everyone,
I've been making my way through The Little Schemer and was wondering what environment/ide/interpreter would be best to use in order to test any of the Scheme code I jot down for …
0
votes
3answers
106 views
Function in Scheme that checks whether the length of a list is even
Hi I have edited the code for function in scheme that checks whether the length of a list is even.
(define even-length?
(lambda (l)
(cond
((null? l)#f)
((equal? (remainder (length(l)) 2) …
1
vote
3answers
117 views
Best dynamic languages for OpenGL/general graphics
Which are the most mature and well supported solutions for writing graphical programs?
I have been using C++ with OpenGL/GLUT, but would like to try a more flexible and expressive approach.
Ruby and …
1
vote
1answer
60 views
How to delete an element from a list in scheme
how to delete an element from a list
ex:- list=[1 2 3 4]
I have come up with some code.I think I got wrong somewhere.
(define delete item
(lambda (list)
(cond
((equal?item (car list)) cdr …
3
votes
5answers
819 views
Loop in scheme
Hi,
How can I implement loop in plt-scheme like in java-
for(int i=0;i<10;){
for(int j=0;j<3;){
System.out.println(""+j);
j++;
}
System.out.println(""+i);
…
1
vote
8answers
214 views
How do I write all-but-one function in Scheme/LISP?
Can you guys think of the shortest and the most idiomatic solution to all-but-one function?
;; all-but-one
;; checks if all but one element in a list holds a certain property
;; (all-but-one even? …
0
votes
1answer
23 views
Using _bitmask from PltScheme FFI
This is a part of a plt-scheme wrapper library:
(define InputMask
(_bitmask '(NoEventMask = #x00000000
KeyPressMask = #x00000001
KeyReleaseMask = …
1
vote
2answers
84 views
Programatically filling in a letrec in Scheme. Macros or eval?
I'm just playing with an NFA for string recognition. I have a macro that creates a function which consumes input and passes on the rest to some other functions. Because there might be loops in my NFA …
0
votes
1answer
35 views
Can I define a global from inside a procedure in Scheme?
I have a situation where I'd like to do something like...
(define (def a b)
(store a b) ; store the definition of 'a' somewhere
(define-global a b)) ; also define 'a' so that its definition
…
