This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved the repl readme to its own file and added notes on its limits
- Loading branch information
Showing
2 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
## Repl | ||
`repl.sh` is a BASH script that creates a Pinecone repl. It supports calling functions and variables, but does not properly handle all symbols (such as `?`) and does not work for multi line expressions. | ||
|
||
To run the repl (after pinecone has been installed): | ||
|
||
* Make the `repl.sh` excitable: `chmod +x repl/repl.sh` | ||
* Run with `./repl/repl.sh` | ||
* Optional: Create an alias. Add `alias pinecone=".../path/to/pinecone/repl/repl.sh"` to your `.rc` file (`~/.bashrc`, `~/.zshrc`, ect.). | ||
|
||
Commands: | ||
|
||
* `.clear`: Clears the repl. | ||
* `.read` : Prints what is in the repl. | ||
* `.exit` : Exits the repl (same as ^C). |