phel-lang / phel-lang
Phel is a functional programming language that transpiles to PHP
Fund package maintenance!
chemaclass.com/sponsor
Installs: 2 098
Dependents: 13
Suggesters: 0
Security: 0
Stars: 427
Watchers: 10
Forks: 24
Open Issues: 25
Requires
- php: >=8.2
- gacela-project/gacela: ^1.9
- phpunit/php-timer: ^6.0
- symfony/console: ^7.0
Requires (Dev)
- ext-readline: *
- ergebnis/composer-normalize: ^2.45
- friendsofphp/php-cs-fixer: ^3.65
- phpbench/phpbench: ^1.3
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^10.5
- psalm/plugin-phpunit: ^0.19
- rector/rector: ^2.0
- symfony/var-dumper: ^7.2
- vimeo/psalm: ^5.26
This package is auto-updated.
Last update: 2024-12-28 19:21:08 UTC
README
Phel is a functional programming language that transpiles to PHP.
It is a dialect of Lisp inspired by Clojure and Janet.
Example
# Define a namespace (ns my\example) # Define a variable with name "my-name" and value "world" (def my-name "world") # Define a function with name "print-name" and one argument "your-name" (defn print-name [your-name] (print "hello" your-name)) # Call the function (print-name my-name)
Documentation
The documentation for Phel can be found on the Phel's website: https://phel-lang.org.
Community
Feel free to ask questions and join discussions on the Phel Gitter channel.
Contribute
Please refer to CONTRIBUTING.md for information on how to contribute to Phel.