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
- Host: GitHub
- URL: https://github.com/danielfvm/koala
- Owner: danielfvm
- License: gpl-3.0
- Created: 2019-11-17T16:10:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-24T17:15:19.000Z (about 6 years ago)
- Last Synced: 2025-01-11T00:12:43.270Z (over 1 year ago)
- Language: C
- Size: 1.37 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
### Helper