chrisguitarguy / plot
A Lisp written in PHP for no good reason
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/chrisguitarguy/plot
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: ~4.3
This package is auto-updated.
Last update: 2025-09-23 08:28:30 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