calysto_scheme icon indicating copy to clipboard operation
calysto_scheme copied to clipboard

A Scheme kernel for Jupyter that can use Python libraries

Results 14 calysto_scheme issues
Sort by recently updated
recently updated
newest added

https://github.com/Calysto/calysto_scheme/search?q=caaar got a hard time reading caadar caaddr caadr caar cadaar cadadr cadar caddar cadddr in the tutorial can anyone explain this?

The [classic SCIP handbook](https://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book-Z-H-12.html#%_sec_1.3.3) has this example: ```scheme (define tolerance 0.00001) (define (fixed-point f first-guess) (define (close-enough? v1 v2) (< (abs (- v1 v2)) tolerance)) (define (try guess) (let ((next...

Hi, I noticed (after some troubleshooting) that dicts created by `(dict ...)` and by `(python-eval "...")` look exactly the same but behave differently: ``` (define a (python-eval "{'a' : 1}"))...

While running the Calysto Scheme Language notebook (from master), I encountered this error : ``` (symbol "apple") Traceback (most recent call last): File "In [177]", line 1, col 2 RunTimeError:...

Image `jupyter/notebook` doesn't exist anymore, so I took the liberty to create another image from `nbgallery/jupyter-alpine` (https://github.com/nbgallery/jupyter-alpine). The alpine based image is supposed to be minimal. The final image is...

Apply's looks like this: 1. put args in list 2. call apply, apply-cont, etc. 3. call `list->vector(args)` 4. `f(*args)` I think we can just put them in a vector to...

In Python, you can create a new class like this: ```python A = type("A", (SUPERCLASS, ...), {ATTRIBUTE: ..., }) ``` If we do it that way, and an ATTRIBUTE is...