(push :burgled-batteries.guess-not-grovel *features*) ; optional; avoids the groveller
(asdf:load-system "burgled-batteries")
(in-package #:burgled-batteries)
(run "1+1") ; ⇒ 2
(run "[1, 2, 3]") ; ⇒ #(1 2 3)
(run "(1, 2, 3)") ; ⇒ (1 2 3)
(run "dict(a=1, b=2, c=3)") ; ⇒ #
(alexandria:hash-table-alist *)
; ⇒ (("b" . 2) ("c" . 3) ("a" . 1))
(import
(
Read more... )