Skip to main content

Build

Requirements:
  • make
  • clang (or gcc)
On Ubuntu/Debian:
sudo apt-get update
sudo apt-get install -y make clang build-essential
Clone the language repo and build:
git clone https://github.com/Stanislas7/tide
cd tide
make

Run the REPL

./bin/tide

Run a file

./bin/tide examples/basics.tide

Run tests

./bin/tide --test
Tide’s test runner executes all *.tide files in ./tests and fails on the first failing assertion.