Move TODO to end of file
This commit is contained in:
parent
3c6d98cd79
commit
40541fd410
10
README.md
10
README.md
|
@ -3,11 +3,6 @@ A very basic LISP implementation with an interpreter and editor written for the
|
||||||
|
|
||||||
[Download the Android app](https://gitlab.com/sagev9000/pebblispandroid/-/wikis/Downloads) to easily type up and send scripts to your 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
|
|
||||||
|
|
||||||
# Writing in PebbLisp
|
# Writing in PebbLisp
|
||||||
PebbLisp includes several built-ins functionalities.
|
PebbLisp includes several built-ins functionalities.
|
||||||
|
|
||||||
|
@ -86,3 +81,8 @@ Each element in the candidate list is compared against the partial condition. If
|
||||||
`(fil (< 100) (20 150 30 200))`
|
`(fil (< 100) (20 150 30 200))`
|
||||||
|
|
||||||
would return `( 150 200 )`, as no other elements fit the condition `(< 100 n)`.
|
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
|
||||||
|
|
Loading…
Reference in New Issue