Last Updated: February 25, 2016
·
1.487K
· francescoagati

pharen: a lisp to php compiler

http://scriptor.github.com/pharen/

(fn greet-person (name)
    (. "Hello " name "!"))

(echo (greet-person "visitor"))

<?php
function greet_person($name){
    return "Hello " . $name . "!";
}

echo greet_person("visitor");
?>