A funny programming language written in Rust
Go to file
~karx 0fbdcdfec0
continuous-integration/drone/push Build is passing Details
Add support for functions and variables in if statements
2021-04-08 15:41:38 -05:00
src Add support for functions and variables in if statements 2021-04-08 15:41:38 -05:00
.drone.yml Fix error in drone config 2021-02-07 19:49:02 +00:00
.gitignore Add basic support for running external programs 2021-02-16 18:42:06 +00:00
Cargo.lock Add regex crate as dependency 2021-04-08 15:26:59 -05:00
Cargo.toml Add regex crate as dependency 2021-04-08 15:26:59 -05:00
LICENSE Add LICENSE 2021-02-07 16:29:24 +00:00
README.md Update 'README.md' 2021-04-08 17:19:37 +00:00

README.md

sandwich

Build Status License

sandwich is a funny programming language written in Rust.

"Why's it called sandwich?"

"Well, Rust's logo is a crab, right? And crabs live on beaches. Beaches have sand. A program is just a bunch of bytes one after another. So what do you bite that's related to sand? A sandwich!"

Example

lhHello
lwWorld!
# prints hello world
p$h $w

Running

See the Running/Installation instructions for more info.

Documentation

Documentation is hosted on the wiki.

Contributing

For major changes, please open an issue first to discuss what you would like to change. Please make sure to update tests as appropriate.

You can do two things to submit code:

Make a pull request

  • Fork the repo
  • git clone https://tildegit.org/yourusername/sandwich
  • Make a feature branch: git checkout -b feature/amazing-feature
  • Make your changes and commit them: git commit -am "My amazing commit message"
  • Push changes to your fork: git push -u origin master
  • Create a pull request.

Send a patch

You can send a patch to karx@tilde.team. Read this guide for more information.

TODO

  • Ability to explicitly print math output and assign math output to variables
  • Better function parsing (multi-instruction functions?)
  • Importing/Running other files
  • "Verbose" or "Debug" mode (environment variable or flag?)

License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to https://unlicense.org