CHICKEN is a compiler for the Scheme programming language.
-4
votes
0answers
38 views
How to install SRFI-19 with Chicken 4.8.0.3? [closed]
How can I install SRFI-19 with Chicken 4.8.0.3? Using sudo chicken-install srfi-19 fails.
After some experimentation, I found I needed to run sudo chicken-install setup-helper first, yet I remain ...
0
votes
1answer
31 views
Looping over a list and generate serial statements in a lambda
I have a macro called compare-and-swap!:
(define-macro (compare-and-swap! l x y)
`(if (> (vector-ref ,l ,x) (vector-ref ,l ,y))
(vector-swap! ,l ,x ,y)))
It works, I'm testing it like ...
0
votes
1answer
25 views
Error by installing of slime for the chicken scheme
After many lines of standard output text of chicken-install slime finally it has printed:
/usr/bin/csi -bnq -setup-mode -e "(require-library setup-api)" -e "(import setup-api)"\
-e ...
0
votes
2answers
48 views
Error during expansion of macro in Chicken Scheme
I'm learning how the macro system in Scheme works and I'm trying to make my code look more JavaScript-y. So I thought I would start with the function macro. This is how I want a function definition to ...
0
votes
1answer
57 views
How to use the abort procedure in Chicken Scheme
I'm trying to use Chicken Scheme's abort procedure as shown in the code below:
(module change-calculator (export calculate-change)
(import scheme)
(define (calculate-change coin-values amount)
...
2
votes
1answer
64 views
Where can I find documentation on the “use” directive in Scheme?
I am using Chicken Scheme and I am attempting to understand the meaning of (use abcd) and how it differs from (require-extension abcd). The Chicken website does not seem to have sufficient information ...
0
votes
0answers
58 views
How to perform benchmarking in scheme?
I am looking to test various Scheme constructs for comparison purposes and was wondering how to go about doing so. I know Ruby has a dedicate module for such benchmarking and a web search does not ...
4
votes
1answer
129 views
how to access the keys in a multidimensional hash table in scheme?
I have a hash table in Chicken Scheme the hash table has keys with values corresponding to those keys are hashes with corresponding values of hashes again. The keys of the "inner hashes" have ...
1
vote
1answer
53 views
How to correctly seed the random function in Scheme?
I was under the impression, upon starting up Scheme, the randomize procedure was called with the current time as its seed. However, if I have a Scheme script consisting solely of (print (random 10)), ...
3
votes
1answer
99 views
How do I use an egg in a compiled environment?
This is a follow up to my previous question. It seems, unfortunately, that Chicken Scheme, by default, doesn't support complex numbers, but rather offers a numbers egg that can be installed.
I have ...
2
votes
1answer
136 views
Does Chicken Scheme support complex numbers? If so, why am I getting this error?
I just started learning a little Scheme, and I'm using Dorai Sitaram's Teach Yourself Scheme in Fixnum Days. In said work it is stated:
Scheme numbers can be integers (eg, 42) ... or complex ...
1
vote
1answer
170 views
Are there any window manager developed using scheme?
Now the stumpwm is my every day desktop. It is awesome and i like it VERY much. The stumpwm is developed using common lisp which is a practical FP language.
Scheme is older than common lisp. And it ...
5
votes
2answers
112 views
How to define a variadic function
I'm looking for something similar to Javascript's arguments array:
function parent(){
child.apply(this.arguments);
}
I'm aware of the dot notation for variable argument lengths and also scheme's ...
1
vote
1answer
87 views
How can I check the stack limits, and accomplish Chicken Scheme style recursion in Java?
Consider the following code. This code almost implements Chicken Scheme style recursion where most of the time functions are directly called but occasionally there is a more complicated trampolining ...
0
votes
1answer
31 views
How can I get platform specific information on stack limits
I'm playing around with making an interpreter that does memory allocation in the style of Chicken Scheme. The basic idea is:
int main() {
instruction instructions[] = { zero_root, print_root, ...
4
votes
3answers
212 views
Is everything a list in scheme?
Along with the book "Simply Scheme" (Second Edition) i'm watching the "Computer Science 61A - Lectures" on youtube. On the lectures , the tutor uses Stk interpreter, but i'm using chicken scheme ...
-4
votes
1answer
126 views
Searching lists that contain lists or conses
Lets say that we got a list like this(with much more elements but the method should be the same):
(define l '((cons 'name 'john)
(cons 'sur 'asurname)
(cons 'name 'george)
...
0
votes
1answer
92 views
How to print all the “parts” of a data structure made with defstruct in chicken scheme
Let's say that we have the above code:
(require-extension defstruct)
(defstruct tree height age leaf-color)
(define coconut
(make-tree height:30
age: 5
leaf-color: ...
2
votes
1answer
190 views
Creating a db in chicken scheme
I would like to ask if it is possible to create a db in chicken scheme; something analogous to this:
http://www.gigamonkeys.com/book/practical-a-simple-database.html
If it is then what predicates do ...
1
vote
1answer
115 views
Write data to a non existing file in scheme(after creating through the program)
I have made a simple program to write text to existing files:
;; write to an existing file
(define write-to-a-file
(lambda (path txt)
(call-with-output-file path
(lambda (output-port)
...
1
vote
1answer
137 views
chicken scheme installation gets stuck during “make install”
I am trying to install chicken using brew
Salils-MacBook-Pro:bin salilwadnerkar$ brew install chicken
==> Downloading http://code.call-cc.org/releases/4.7.0/chicken-4.7.0.tar.gz
Already ...
0
votes
2answers
167 views
How do you define a variadic function in a Chicken Scheme module?
Is this a bug in Chicken Scheme?
#;1> (define (foo x . y) x)
#;2> (foo 1 2 3)
1
#;3> (module bar (import scheme chicken) (define (foo x . y) x))
Error: invalid syntax in macro form: (foo x ...
16
votes
3answers
686 views
Is there a lint for Common Lisp or Chicken Scheme?
Is there a lint for Common Lisp or Chicken Scheme? Possibly something akin to C's splint, Haskell's HLint, Perl's B::Lint, etc.?
4
votes
2answers
249 views
Good way to do “either/or” relationship in Entity Framework (SQL Server)
Let's say I have two entity objects "table" and "chicken."
Now let's say, I have a "wing" object, and I want that wing to have a 0..1-1 relationship with table and chicken. In otherwords, I want a ...
4
votes
2answers
776 views
Problem in porting Chicken of VNC Mac application into iphone application
I'm porting Chicken of VNC Mac application into iphone application
I am having source code of Chicken of VNC Mac application which take vnc of any LAN connected mac. I have to do same with iphone ...
1
vote
3answers
355 views
Does Chicken Scheme have an equivalent to Perl's $0?
How can I reliably get the script name in Chicken Scheme?
It seems that -ss eats up the script name, so it's not visible unless I use dot slash to run my scripts.
scriptedmain.scm:
#!/usr/bin/env ...
4
votes
3answers
176 views
Is there an equivalent to “run-program” in common lisp in scheme?
I can run (run-program "/usr/ls" '()) in sbcl, is there an equivalent in any scheme implementation? Chicken.. r6rs?
1
vote
1answer
252 views
How can I read and write binary floats with Chicken Scheme?
I am reading a binary data format using Chicken, and so far I've gotten ints working by doing stuff like (fx+ (fxshl (read-byte) 8) (read-byte)) (Big Endian).
How can I read and write floats in? I ...