0
votes
2answers
44 views
Scheme, getting the pointer from pointed struct
Assume I have a such struct:
(define-struct node (value next))
;and making 2 nodes, parent pointing to child as next.
(define child (make-node 2 null))
(define parent (make-node …
1
vote
3answers
78 views
“for each” or “every” keywords in Scheme
Is there a for loop or for each loop in Scheme ?
I've been searching around and found there is a keyword "every" but the scheme compiler language I'm using does not have this func …
0
votes
1answer
42 views
Why String is not a String when it is passed to C from Scheme?
From the Plt-Scheme installation I have an example of C/Scheme interaction. There are two files: curses.c and curses-demo.ss. These files are available here.
I've compiled curses.c …
0
votes
2answers
32 views
Compiling a .ss file
I heard that you can compile .ss files with DrScheme, and even remember doing it once
to result in some good speedups on my code, since it doesn't need to put in all the debugging …
0
votes
5answers
114 views
Debugging Scheme in Emacs
I am shifting from DrScheme to Emacs to edit my PLT Scheme files. Can you teach me how to use steppers or debuggers in Emacs?
Thanks.
0
votes
3answers
42 views
Calling mysql_real_escape_string using the PLT-Scheme Foreign Function Interface
Hi,
using the PLT-Scheme-FFI, I want to call the C-function
unsigned long mysql_real_escape_string(MYSQL *con, char *to, const char *from, unsigned long length)
from a scheme …
0
votes
1answer
48 views
How To Build a DrScheme Teach Pack
Hello,
I'm learning PLT Scheme and I want to know how can I build a Teach Pack for DrScheme, some tutorials...? Thanks.
1
vote
2answers
83 views
PLT Scheme noob: Boolean and/or aren’t procedures?
I'm trying to make a truth-table generator for a digital electronics course because that's how I have fun in my spare time and don't judge me.
Anywho, I figured I'd have a hash wi …
1
vote
3answers
80 views
Good Revision Control For PLT Scheme
Hello,
Now I'm following one more friend and now I started to learn PLT Scheme(using DrScheme), but I and my friends normally help each other in some projects, to do this we use r …
4
votes
1answer
70 views
How does PLTScheme Catch errors?
I am amazed by the "error" function in PLTScheme.
If I have a division by zero, it doesnt do any other recursion and just comes out of the call stack and give me an error.
Is th …
1
vote
2answers
40 views
Detecting EOF in a Binary File using Scheme
(define (read-all-input)
(local ((define line (bytes->list (read-bytes 4))))
(if (eof-object? line)
empty
(cons line (read-all-input)))))
(void (read-all- …
0
votes
1answer
39 views
Scheme regular expression match
Is there a simpler way of writing in scheme
(eqv? (regexp-match "0x" "0x1234") #t)
#f
(eqv? (regexp-match "0x" "1234") #f)
#t
0
votes
2answers
98 views
Intuitive motivation for Literate Programming?
So, I used the scribble/lp module to write my first literate program using plt-scheme:
#lang scribble/lp
(require scribble/lp)
<<lp_scheme.ss>>
@chunk[<squarefunc …
0
votes
1answer
64 views
What are “reduction semantics”? Please explain the use of PLT Redex in layman’s term.
Somebody please explain the usage of reduction semantics and the PLT Redex in simpler language.
Thanks.
2
votes
2answers
93 views
Question about SimpleHTTPServer.py
I am partially through implementing the functionality of SimpleHTTPServer.py in Scheme. I am having some good fun with HTTP request/response mechanism. While going through the abov …
