wisp-lang / wisp

A little Clojure-like LISP in JavaScript

Home Page:https://gozala.github.io/wisp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

segment fault using macros

h2non opened this issue · comments

commented

This issue is related to #105

Segmentation fault error happens when using the !? macro

(defmacro ?
  [x y]
  `(identical? ~x ~y))

(defmacro !?
  [x y]
  `(not (? ~x ~y)))