Tagged Questions

Racket • Download • Getting Started • Documentation Racket is suitable for implementation tasks ranging from scripting to application development, and supporting the creation of new programming languages. It includes the DrRacket programming environment, a virtual machine with a just-in-time ...

learn more… | top users | synonyms (2)

28
votes
5answers
914 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: ...
20
votes
5answers
4k 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 ...
19
votes
2answers
968 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 ...
16
votes
3answers
3k 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 ...
16
votes
3answers
648 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 ...
11
votes
4answers
505 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
456 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
911 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
920 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 ...
9
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
4answers
280 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
2answers
874 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

Scheme / Racket Best Practice - Recursion vs Variable Accumulation

I'm new to Scheme (via Racket) and (to a lesser extent) functional programming, and could use some advise on the pros and cons of accumulation via variables vs recursion. For the purposes of this ...
7
votes
3answers
179 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
221 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
477 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
201 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
445 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
297 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
998 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
1answer
107 views

Show the type of a function

In the toplevel of Ocaml, when we enter a primitive function, we can get its type, for instance: # List.map;; - : ('a -> 'b) -> 'a list -> 'b list = <fun> But in Racket, it gives ...
5
votes
2answers
106 views

Conditional pattern matching in Racket

Since all the examples in the guide are with lists, I find it difficult to see how to use pattern matching in Racket to write conditional matching like OCaml does, for example: read ~var_a var_b s = ...
5
votes
2answers
85 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 ...
5
votes
3answers
286 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 ...
5
votes
2answers
109 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
145 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
107 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
100 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
172 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
82 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
128 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
230 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
207 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
118 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
400 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
656 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
463 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
329 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 ...
5
votes
1answer
404 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 there an implicit ...
4
votes
4answers
58 views

Issues with evaluating expressions from user input

I'm trying to make a recursive definition that reads and execute user expressions, such as (3 + 5). Everything is working, except of one problem with the arithmetic symbol. I managed to replicate the ...
4
votes
3answers
61 views

Game programming in racket

I want to use racket to make a game whose graphics would involve a grid where each cell could be filled with one or more sprites on top of each other. Racket has a graphics and gui toolkit in its ...
4
votes
3answers
126 views

New to Scheme/Racket: Heavy use of recursion a way of life or am I just going through a typical phase

I've been bouncing around functional languages for the last few months from F# to Haskell to Scheme (Racket). I've never really used recursion much, but Haskell and its pattern matching really helped ...
4
votes
6answers
159 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
194 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
2answers
109 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
70 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 ...

1 2 3 4 5 10