taailsScript, a custom scripting language. (and interpreter)
- Custom syntax and operations
- Error handling
- Mathematical operations
I made a VS Code Extension that adds syntax highlighting to .taails files. The project is available here
To install the taailsScript interpreter, follow these steps:
- Ensure you have Python installed on your system.
- Clone the repository or download the source code.
- Navigate to the directory containing the interpreter.
git clone https://github.com/TaAils1440p/taailsScript.git
cd taailsScriptTo execute a taailsScript code file, use the shell.py script.
- Create a
.taails(or.txt) file - Write your script (or use the exaple script)
- Follow the steps down below
Example of interactive use:
python3 shell.pyIn the custom shell, type:
RUN("your_file.taails")
The interpreter includes a custom error handling system. Errors are defined with a start and end position, an error name, and details.
taailsScript is released under the MIT License. See the LICENSE file for more details.