chicken-scheme Questions
4
Is there a way to create an equivalent of Python's virtual environments (virtualenv)? With virtualenvs, one can install Python packages inside the virtual environment (a separate directory) without...
Perretta asked 6/10, 2017 at 19:34
5
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.?
Natatory asked 1/8, 2011 at 0:23
2
I have been using chicken scheme lately and i find it really good, someone suggested that chez scheme is the fastest scheme implementation. So i wanted to try it, but i am not sure how to create co...
Rrhoea asked 2/1, 2018 at 12:40
2
Is there anyone who is able to configure Sublime Text 2 and SublimeRepl to work with chicken scheme?
I've got chicken repl in Sublime, but it displays error messages from the chicken scheme only (...
Fy asked 17/8, 2013 at 17:54
1
Solved
I have created executable of following code in Racket (choosing Racket and not GRacket):
#lang racket
(print "Hello World!")
It creates a tgz of 3.6 mb with an executable of 6.2 mb. This seems ...
Minelayer asked 9/4, 2017 at 13:59
2
Solved
In Common Lisp, if I want two functions to share state, I would perform a let over lambda as follows:
(let ((state 1))
(defun inc-state ()
(incf state))
(defun print-state ()
(format t "~a~%" ...
Deter asked 21/8, 2016 at 16:54
1
Solved
I'm a little hazy on the differences between (use) and (import) in Chicken. Similarly, how do (load), (require) and (require-extension) differ?
These things don't seem to be mentioned much on the ...
Incursive asked 12/8, 2016 at 18:36
2
Solved
Racket has the nice read-bytes-async! function, which I believe exists in every other programming language in the world. It reads what it can from an input stream, without blocking, into a buffer, ...
Bondswoman asked 1/11, 2013 at 0:8
2
Solved
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'...
Tolentino asked 17/10, 2012 at 19:42
3
Solved
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/en...
Copywriter asked 4/3, 2011 at 0:46
1
© 2022 - 2024 — McMap. All rights reserved.