Retropikzel

Results 11 issues of Retropikzel

When script is compiled, run and it constains call to exit without arguments an error is thrown: `Error: Expected at least 1 arguments to exit but received 0: ` I've...

When running script with -s flag with icyc, it does not exit at the end of script. I made an example to reproduce the error https://github.com/Retropikzel/cyclone-bug-reporting tho it should be...

Currently if you have this directory structure: bar/baz.sld: (define-library (bar baz) (import (scheme base) (scheme write)) (export hello) (begin (include "baz.scm"))) bar/baz.scm: (define hello (lambda () (display "Hello") (newline))) And...

main.scm: (import (scheme base) (scheme write) (srfi 8)) (receive (a b) (values 1 2) (begin (display a) (newline) (display b) (newline))) srfi/8.sld: (define-library (srfi 8) (import (scheme base)) (export receive)...

## Problem You want to write portable code and to test it with multiple implementations. However installing them can be cumbersome and time consuming. ## Solution Running the code in...

I tried looking around the documentation and code but could not find a way to add directory to library load path. Is there one? Example: snow/foo/bar.sld: (define-library (foo bar) (import...

I’m making a portable CGI library and reading characters from the (current-input-port), I noticed that Ypsilon leaves out #\return characters when reading from (current-input-port). I’ve made a some tests to...

Add support for capyscheme, mit-scheme and tr7

I noticed that on the website the --r7rs flag is only for running scripts with interpreter, is there something similar for compiling R7RS code? Assuming files. main.scm ``` (import (scheme...

blocker
UX

When running: ``` ./configure --prefix=/usr/local make sudo make install ``` I get an error, some lines removed: ``` 'src/tutorial/httpd/simpled.ss' -> '/usr/local/v0.18.1-172-g0cee64de/src/tutorial/httpd/simpled.ss' 'src/tutorial/proxy/tcp-proxy3.ss' -> '/usr/local/v0.18.1-172-g0cee64de/src/tutorial/proxy/tcp-proxy3.ss' 'src/tutorial/proxy/tcp-proxy2.ss' -> '/usr/local/v0.18.1-172-g0cee64de/src/tutorial/proxy/tcp-proxy2.ss' 'src/tutorial/proxy/tcp-proxy1.ss' -> '/usr/local/v0.18.1-172-g0cee64de/src/tutorial/proxy/tcp-proxy1.ss'...