A Lisp written in PHP for no good reason

dev-master 2014-12-24 23:46 UTC

This package is auto-updated.

Last update: 2024-04-23 05:38:12 UTC


README

A scheme written in PHP for no good reason.

Example

use Chrisguitarguy\Plot\Plot;

$prog = <<<EOF
(define say-hello! (lambda (name) (println! "Hello," name)))
(say-hello! "Plot")
(+ 1 2 3)
EOF;

$plot = new Plot();

$result = $plot->evaluateString($prog);
var_dump($result); // int(6), the result of the last s-expression is returned