Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

kilate-lang/interpreter

Repository files navigation

Kilate

  • An easy interpreted programming language.

Syntax

work main(): bool {
  // We have 3 ways to declare variables
  // they are all the same, the only difference is the syntax.
  let helloMessage = "Hello, world!"
  var helloMessage = "Hello, world!"
  string helloMessage = "Hello, world!"

  print -> helloMessage
  return -> false
}

How to install Kilate-Interpreter

🐧 Linux

Requirements: ruby, cmake, make, C++ compiler (g++ or clang)

1. Clone the repository

git clone https://github.com/kilate-lang/kilate
cd kilate

3. Install

ruby build.rb --install

How to use Kilate-Interpreter

Below we have the basic interpreter commands.

Run

kilate run <files>

Help

kilate help

About

Old Kilate Interpreter.

Resources

License

Stars

Watchers

Forks