Skip to content
This repository has been archived by the owner on Sep 30, 2023. It is now read-only.

Commit

Permalink
moved the repl readme to its own file and added notes on its limits
Browse files Browse the repository at this point in the history
  • Loading branch information
wmww committed Aug 24, 2017
1 parent 471b717 commit d386d64
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
13 changes: 0 additions & 13 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,5 @@ The following features are coming soon:
* Proper classes (pass-by-reference needed)
* Operator overloading

## Repl
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).

## Contributing
I have not yet added enough documentation to the language internals to make it practical for others to contribute to the language itself. If you are interested in adding a specific feature or just helping out, post in the [subreddit](https://www.reddit.com/r/PineconeLang/) or direct message me on [reddit](www.reddit.com/u/william01110111/) or [twitter](https://twitter.com/PineconeLang). Fixes and improvements to the readmes and tutorials are always welcome.
15 changes: 15 additions & 0 deletions repl/readme.md
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).

0 comments on commit d386d64

Please sign in to comment.