shen-go icon indicating copy to clipboard operation
shen-go copied to clipboard

A Go implementation of the Shen programming language

Results 4 shen-go issues
Sort by recently updated
recently updated
newest added

Refer S31/Primitives/primitives.lsp: ```lisp (DEFUN open (String Direction) (LET ((Path (FORMAT NIL "~A~A" *home-directory* String))) (shen.openh Path Direction))) ``` Maybe in PrimReadFileAsByteList, filename should path.Join with the value of `*home-directory*` .

See https://github.com/Shen-Language/shen-sources/releases/tag/shen-33.1.2

``` (0-) (/ 1 0) -9223372036854775808 ``` Should throw a error (trap-error (/ 1 0) (/. E -1)) gives -1 : number (trap-error (/ 1 0) (/. E (error-to-string E)))...

FFIW I can't load this string module from shen-libs. shen-go panics. ``` \* modulesys *\ (load "/home/tim/src/shen/callwords/shen-libs/modulesys.shen") (module.add-path "/home/tim/src/shen/callwords/shen-libs") \* shen-libs *\ (module.use [strings]) ``` results in ``` Recovered in...