An open API service indexing awesome lists of open source software.

https://github.com/danielfvm/koala

A small Interpreter Language
https://github.com/danielfvm/koala

Last synced: over 1 year ago
JSON representation

A small Interpreter Language

Awesome Lists containing this project

README

          

# Koala 0.3-a1
A small Interpreter Language

## Download on Linux/Mac:

```
$ git clone https://github.com/danielfvm/Koala
$ cd Koala
$ cmake .
$ make
$ make install
```

## Download on Windows:

Installation guide:

1. Download or clone the [Koala](https://github.com/danielfvm/Koala/archive/master.zip) folder.

2. Make a new project in your IDE.

3. Add the ```.cpp``` and ```.h``` files to the project.

4. Build your project.

## Examples:
```python
O: "Hello World"; # Prints a text
```
```python
var x;
I: &x; # Reads a text into ´x´
```
```python
var x, y;
I: &x, &y; # Reads numbers to ´x´ and ´y´
O: "$x + $y = ${x + y}"; # prints answer
```

## Collaborators:

### Developer

  • DanielFvM


  • ### Helper

  • Marhorn