LispSyntax.jl icon indicating copy to clipboard operation
LispSyntax.jl copied to clipboard

lisp-like syntax in julia

Results 8 LispSyntax.jl issues
Sort by recently updated
recently updated
newest added

You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...

minor changes should address the init_repl bugs #33 and #35 @JuliaRegistrator register

When setting a float value I'm getting the following error: ```julia julia> lisp"(def x 2.5)" ERROR: LoadError: Malformed def: Length of list must be == 3 Stacktrace: [1] error(::String) at...

Hi, I've found the following error while trying to run the example in the README file: ``` julia> using LispSyntax julia> LispSyntax.init_repl() ERROR: UndefVarError: init_repl not defined ``` Cheers,

In PR #31, an important point was brought up: does REPL code below in the LispSyntax.jl package? This also begs the same question for an evolving (if nascent) Lisp reader...

We'll need a type declaration syntax at least for method definitions. I was thinking something like this ```julia f(x::Number, y::String) = (x, y) ``` translating to ```julia (defn f [(x...

To make this nicer for people to use, I think it'd be cool to make a special jupyter kernel that just parses a code block with the lisp parser before...