Skip to content

Latest commit

 

History

History
35 lines (18 loc) · 512 Bytes

readme.md

File metadata and controls

35 lines (18 loc) · 512 Bytes

Grapes

Grapes is a Dynamicaly Typed Programng Language that is extremely fast and very reliable.

Here is a sample of grapes:


fun sayHello() {
  return "Hello";
}

var message = sayHello();
print message;

How To Build ?

This Project Uses CMake as the build system.

To build this project, make a folder to hold the compiled files and open it.

Then run this command:

$ cmake -G ninja .. && ninja

Afterwards run ./Grapes on linux and Grapes on Windows to run the compiler