Tagged Questions
Racket is an extensible multi-paradigm programming language descended from Scheme.
25
votes
5answers
878 views
Collection of Great Applications and Programs using Macros
I am very very interested in Macros and just beginning to understand its true power. Please help me collect some great usage of macro systems.
So far I have these constructs:
Pattern Matching:
...
19
votes
2answers
934 views
Help understanding Continuations in Scheme
I have been working alongside The Little Schemer to learn Scheme and using PLT-Scheme for my environment.
The Little Schemer has helped me tremendously with recursion (it is straightforward for me ...
18
votes
5answers
3k views
How is Racket different Than Scheme?
Racket is a descendant of Scheme. How is Racket different than R6RS? What did it add, or take away, or is just different?
I'm understanding that Racket is more than a language, it's a platform for ...
16
votes
3answers
639 views
When did the idea of macros (user-defined code transformation) appear?
I have read McCarthy's 1960 paper on LISP and found no reference to anything that's similar to user-defined macros or normal order evaluation. I was wondering when marcos first appeared in programming ...
14
votes
3answers
2k views
Dr Racket problems with SICP
I'm working through SICP. Currently, in the first chapter, I'm having problems getting Racket to let me redefine "primitives". For instance, I was under the impression that I should be able to ...
11
votes
4answers
499 views
What do I need to do to get paid to Scheme?
I'm a big fan of functional programming in general, Schemes in particular, and PLT-Racket ideally. I am wondering what concrete steps are likely to get me into a position where coding Scheme (or some ...
10
votes
4answers
437 views
Clojure or Scheme bayesian classification libraries?
Any pointers to scheme/racket or clojure bayesian classification libraries? I need one for a toy/learning project that I'm going to do.
10
votes
4answers
892 views
Why doesn't Scheme support first class environments?
I've been reading through SICP (Structure and Interpration of Computer Programs) and was really excited to discover this wonderful special form: "make-environment", which they demonstrate to use in ...
9
votes
1answer
877 views
Is there an equivalent to Lisp's “runtime” primitive in Scheme?
According to SICP section 1.2.6, exercise 1.22:
Most Lisp implementations include a primitive called runtime that returns an integer that specifies the amount of time the system has been running ...
8
votes
4answers
231 views
Why is foldl defined in a strange way in Racket?
In Haskell, like in many other functional languages, the function foldl is defined such that, for example, foldl (-) 0 [1,2,3,4] = -10.
This is OK, because foldl (-) 0 [1, 2,3,4] is, by definition, ...
8
votes
3answers
2k views
Scheme: what are the benefits of letrec?
While reading "The Seasoned Schemer" I've begun to learn about letrec. I understand what it does (can be duplicated with a Y-Combinator) but the book is using it in lieu of recurring on the already ...
8
votes
2answers
860 views
How do I choose what language to use in DrScheme?
I recently downloaded PLT Scheme and DrScheme. When I open DrScheme, I am told to choose a language. However, I'm not familiar with any of my options, and the help guides don't really break it down to ...
8
votes
10answers
1k views
What are some things that you've used Scheme macros for?
Many examples of macros seem to be about hiding lambdas, e.g. with-open-file in CL. I'm looking for some more exotic uses of macros, particularly in PLT Scheme. I'd like to get a feel for when to ...
7
votes
3answers
154 views
2 questions at the end of a functional programming course
Here seems to be the two biggest things I can take from the How to Design Programs (simplified Racket) course I just finished, straight from the lecture notes of the course:
1) Tail call ...
6
votes
2answers
184 views
String split function
I am just wondering if there is the string split function? Something like:
> (string-split "19 2.14 + 4.5 2 4.3 / - *")
'("19" "2.14" "+" "4.5" "2" "4.3" "/" "-" "*")
I haven't found it and ...
6
votes
1answer
389 views
Differences between #lang scheme and #lang racket
I'm guessing that #lang racket is a dialect of scheme with much more out of the box structures and common functions and perhaps would be more pedagogic. What are the perks a #lang racket against #lang ...
6
votes
2answers
179 views
How can I determine why my Racket code runs so slowly?
Just for fun, I wrote a quick Racket command-line script to parse old Unix fortune files. Fortune files are just giant text files, with a single % on a blank line separating entries.
Just as a quick ...
6
votes
1answer
1k views
Programming Scheme(Racket) with VIM - How to get started
recently, I started programming Racket (formerly Scheme) in DrRacket.
I quite fast I began to miss all the features of VIM in DrRacket, so I would like
to use VIM for my scheme(racket) programming.
I ...
6
votes
1answer
426 views
Scheme: CAR and CDR of a list
I am confused as to how car and cdr work on lists. Here is an example of what I have tried:
(define sample (read))
(display sample)
(display (car sample))
(display (cdr sample))
(display (car (cadr ...
6
votes
3answers
291 views
What does 'parametrize' do in DrScheme?
I'm trying to make sense of the example code here (below Examples). I don't understand that parametrize construct. The docs for it are here, but they don't help. What does it do?
6
votes
4answers
7k views
Loop in PLT Scheme
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);
...
6
votes
3answers
2k views
Which language in DrScheme for SICP?
I have been using the Module for SICP in DrScheme 4.2 but which language has the best support for SICP in DrScheme?
Has anyone here tried this?
Thanks.
6
votes
2answers
947 views
What happens in a Scheme 'cond' clause when the 'else' is omitted?
I'm in the process of learning Scheme. I recently spent (too much!) time trying to find a bug in a program before I realized I was missing the 'else' word in a cond clause. But the behavior in such ...
5
votes
2answers
98 views
Racket reader macros
Is there any way to make simple reader macros in Racket. I mean a generalization like this:
(define-reader-syntax "'" quote)
; finds expressions that start with "'" and wraps them in `(quote ...)`
...
5
votes
2answers
141 views
Multiply without + or *
I'm working my way through How to Design Programs on my own. I haven't quite grasped complex linear recursion, so I need a little help.
The problem:
Define multiply, which consumes two natural ...
5
votes
1answer
96 views
Behavour of nested quotes in Scheme and Racket
While writing a function in Racket I accidently put two single quotes in front of a symbol instead of one. i.e. I accidently wrote ''a and discovered some behaviour of nested quotes that seems ...
5
votes
1answer
95 views
Dynamically find out how many inputs a function has, Racket
Is there a way to find out at runtime, how many inputs (arguments, parameters) a function has?
Say, I want to:
(define (my-function unknown-function)
...
(number-of-necessary-arguments ...
5
votes
1answer
134 views
Setting default argument value in Racket
Is it possible to set a default value to some of arguments in Racket?
Like so in Python:
def f(arg=0)
...
5
votes
1answer
75 views
String representation of custom data in Racket
I like how you can retain representation in transparent structs:
(struct posn (x y)
#:transparent)
> (posn 1 2)
(posn 1 2)
But is there a way to customize it? Like in Python?
5
votes
2answers
112 views
How do I pass a list as a list of arguments in racket?
I have a statement like this:
((lambda (a b c) (+ a b c)) 1 2 3) ; Gives 6
And I would like to be able to also pass it a list as so:
((lambda (a b c) (+ a b c)) (list 1 2 3))
...except this ...
5
votes
1answer
210 views
Racket REPL over TCP
I've built a rather complex application with Racket (formerly PLT Scheme) and would like to add a REPL for debugging purposes. I've tried to make it accessible over a TCP stream:
(define repl-server
...
5
votes
4answers
192 views
How to check if a list contains only #t
I was trying with the following code in racket and MIT scheme, surprise me that the compiler throw err
(foldr and #t '(#t #t #f))
Is there any way to use reduce/fold way to check if a list contains ...
5
votes
1answer
110 views
Some Macro terms in Racket
I am a confused by the terms for a long time, thinking it is good to ask out what exactly do they mean:
A. syntax. B. syntax value. C. syntax object. D.s-expression E.datum (in syntax->datum)
...
5
votes
4answers
374 views
Performance of recursion vs accumulator style
We have two functions that compute the factorial of a given number. The first one, !, uses an accumulator style. The second, fact, uses natural recursion.
(define (! n0)
(local (;; accumulator is ...
5
votes
9answers
627 views
Large projects built on Lisp [closed]
What are some examples of large projects (e.g., web sites) programmed in Lisp or a Lisp framework?
5
votes
1answer
442 views
Racket URL dispatch
I'm trying to hook up URL dispatch with Racket (formerly PLT Scheme). I've taken a look at the tutorial and the server documentation. I can't figure out how to route requests to the same servlets.
...
5
votes
3answers
322 views
PLT-Scheme learning reference
After having got through the two Schemer books, I'm about to embark on HtDP but also discovered the http://docs.plt-scheme.org/guide material.
The previously mentioned books are more particular to ...
4
votes
2answers
47 views
Racket Source and / or Cookbook Examples
How much of Racket is written in Racket? For example, is the argmax function implemented in Racket or in C? What about take and drop? I couldn't find it in the source on github.
The reason I ask ...
4
votes
6answers
120 views
How to design a crawl bot?
I'm working on a little project to analyze the content on some sites I find interesting; this is a real DIY project that I'm doing for my entertainment/enlightenment, so I'd like to code as much of it ...
4
votes
1answer
160 views
The advantage of Arc over Racket
Arc is built on top of Racket. Since both of them are in the Lisp family, I am curious about the the advantage of Arc over Racket, or what is the motivation of creating Arc given that Racket is ...
4
votes
3answers
217 views
How to make a GUI using Lisp: DrScheme or Common Lisp
Or the basic work need to do to create a GUI. I know the basic Components
of GUI, but where to begin. I'm just a self-study person and I'm reading "How to Design Program" (HtDP) at the end of the book ...
4
votes
2answers
90 views
Pattern matching with Kleene star on structure type in Racket
I started playing with Racket pattern matching system recently and got into a problem i can't understand.
If i do:
(match (list 1 2 3 4 5 6 7 8 9 10 11 12)
[(list _ x y z ...) (list y ': x)])
...
4
votes
2answers
64 views
Changing the current input port in racket
How can I change the input port in racket?
That is, suppose I create a new input port:
(define my-port (open-input-string "this is a test"))
How can I make it so that (current-input-port) returns ...
4
votes
2answers
153 views
Best way to learn Racket Macro system for imperative style programmers
What is the best route for an experienced imperative style programmer only familiar with C macros to learn the Racket macro system. Not just the mechanics of it (the how?) but also the where and why ...
4
votes
3answers
185 views
I/O performance in mzscheme
Being a Linux administrator, I used to write my scripts in Bash, TCL and, less often, in Perl. Just out of curiosity, I tried to write something in mzscheme, but what I found out was that the ...
4
votes
1answer
89 views
Scheme: Adding to a list of records
I'm working on a Scheme assignment for school and there's a question involving us defining a record "type" (implemented as a list) (which represents a music record).
The question I'm having trouble ...
4
votes
2answers
102 views
Scheme: Lists of three dotted elements returning strangely (like an infix operator?)
I am a new Scheme/Racket student, so please excuse any blatant syntax errors.
It came up in class today that the scheme list '(a, b, c) should be invalid, but when we ran it, it returned:
>'(a ...
4
votes
1answer
163 views
Racket: using events in a frame% window
I'm learning Racket (formerly PLT Scheme, a LISP dialect) and try to discover how to handle events different than paint-callback (maybe it's not even one).
I hoped a lot from this part of the doc but ...
4
votes
2answers
212 views
Does Scheme/Racket have an enumeration operation?
Does Scheme/Racket have an enumeration notation equivalent to the [a..b] notation in Haskell?
In Haskell, [1..5] evaluates to a list [1,2,3,4,5].
4
votes
2answers
174 views
project euler #7 in scheme
Here is a question:
By listing the first six prime
numbers: 2, 3, 5, 7, 11, and 13, we
can see that the 6th prime is 13.
What is the 10001st prime number?
Here is my solution:
#lang ...