- An easy interpreted programming language.
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
}
Requirements: ruby, cmake, make, C++ compiler (g++ or clang)
git clone https://github.com/kilate-lang/kilate
cd kilateruby build.rb --install
Below we have the basic interpreter commands.
kilate run <files>kilate help