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

https://github.com/hansputera/test-program-lang

Learn how to parse a script, and run it as a program
https://github.com/hansputera/test-program-lang

evaluation language parser

Last synced: about 1 year ago
JSON representation

Learn how to parse a script, and run it as a program

Awesome Lists containing this project

README

          

## TestLang
Learn how to create own language syntax

**Print:**
```
echo("Hello World!"); // Hello World!

echo(1 + 2); // 3
```

**Variables:**
```
nama: "Jono Sutejo";

echo(nama); // Jono Sutejo
```

## Run
0. clone this repo
1. run `go build`
2. run `./testlang `
3. done