The THP programming language compiler https://thp.araozu.dev
Go to file
Araozu a7417e8a99 Add tests to function parameters 2024-03-18 16:41:11 -05:00
.vscode vscode 2023-10-14 06:14:13 -05:00
src Add tests to function parameters 2024-03-18 16:41:11 -05:00
.gitignore [Syntax] Parse function call as a statement 2023-10-05 06:31:24 -05:00
CHANGELOG.md Add tests to function parameters 2024-03-18 16:41:11 -05:00
Cargo.lock Use colored for CLI output 2023-12-12 20:58:09 -05:00
Cargo.toml Use colored for CLI output 2023-12-12 20:58:09 -05:00
LICENSE.md Remove doc from compiler 2023-09-07 20:18:35 -05:00
README.md Add tests to function parameters 2024-03-18 16:41:11 -05:00

README.md

THP: Typed Hypertext Processor

Types and a new syntax for PHP, because I'm forced to use it at work.

Usage

TBD.

Requirements: A *nix system & cargo

# Clone the repo
git clone https://github.com/Araozu/thp-lang.git

# Generate an executable
cargo build --release

# The executable will be located in ./target/release/thp

# And then run it follow the instructions!
Usage: `thp [command] [options]`

Commands

  c _file_  Compiles _file_ in-place
  f _file_  Formats _file_
  r         Starts the REPL

  init      Initializes a new project in the current directory
  build     Builds the project
  fmt       Formats all files in the project
  watch, w  Starts compilation of the project in watch mode

  help, h   Print this message & exit

General options

  -h, --help    Print command-specific usage
  -v, --version Print version & exit