Introduction

Syntactical is a programming language. It's not a compiler or a interpreter. Instead, it's a transpiler. It transpiles the code you write into Python, then runs it.

THIS SECTION IS NOT FINISHED

Installation

To install Syntactical, follow these steps depending on your package manager:

pip

  1. Open a terminal.
  2. Type in: pip install syntactical (change command accordingly if you use pip3), then press enter.
  3. Syntactical will be installed on your machine.
  4. You can now use Syntactical with the syn or syntactical commands in your terminal.
  5. If a new version of Syntactical gets released and you want to install it, type this command in your terminal: pip install --upgrade syntactical, and press enter.

Suggestion: When using Syntactical, it's recomended to use Visual Studio Code with the Syntactical extension.

The PyPi page for Syntactical can be found here.

Builtin Functions

Syntactical has built in functions. Some of them I will referance from their Python alternatives. Here's all the functions and what they do:

This might not look like many, but it is not including the other features in the language.

THIS SECTION IS NOT FINISHED

Modules

To add modules to your Syntactical file, use the use statement in your code. The use statement works exactly like Python's import statement. The from statement can also be used like in Python (except replace import with use). Here's a full list of the current supported modules in Syntactical:

THIS SECTION IS NOT FINISHED