This commit is contained in:
= 2020-08-03 14:18:16 +01:00
commit 05d86d81be
1 changed files with 6 additions and 5 deletions

View File

@ -1,11 +1,7 @@
# PebbLisp
A very basic LISP implementation with an interpreter and editor written for the Pebble.
[Download the Android app](https://gitlab.com/sagev9000/pebblispandroid/-/wikis/Downloads) to easily type up and send scripts to your Pebble.
# TODO
- Call scripts from scripts
- Call more pebble functions
- Maybe hard-code more built-in functions to ease up on memory use
[Download the Android app](https://gitlab.com/sagev9000/pebblispandroid/-/wikis/Downloads) to easily type up and send scripts to your Pebble.
# Writing in PebbLisp
PebbLisp includes several built-ins functionalities.
@ -85,3 +81,8 @@ Each element in the candidate list is compared against the partial condition. If
`(fil (< 100) (20 150 30 200))`
would return `( 150 200 )`, as no other elements fit the condition `(< 100 n)`.
# TODO
- Call scripts from scripts
- Call more pebble functions
- Maybe hard-code more built-in functions to ease up on memory use