Add README

This commit is contained in:
Timothy Warren 2019-10-15 14:57:58 -04:00
parent 9184a9b90f
commit 15f36a960a
1 changed files with 10 additions and 0 deletions

10
README.md Normal file
View File

@ -0,0 +1,10 @@
# PHP Kilo
A reimplementation of the [Kilo](https://viewsourcecode.org/snaptoken/kilo/index.html) tutorial in PHP. Requires PHP 7.4,
due to requiring the `FFI` extension.
## Implementation notes:
* The `editor` prefix has been removed from all the relevant functions, instead they are methods on the `Editor` class.
* Enums are faked with class constants
* Generally, if a function exists in PHP, with the same name as the C function, the PHP version will be used.