Skip to content

chrisguitarguy/Plot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Plot

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

About

A Lisp in PHP for no good reason.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages