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

https://github.com/mohabmes/pl-design

Programming Language Design using GOLD Parser Builder System
https://github.com/mohabmes/pl-design

csharp gold-parser programming-language-design

Last synced: 3 months ago
JSON representation

Programming Language Design using GOLD Parser Builder System

Awesome Lists containing this project

README

        

# PL-Design
Programming Language Design using GOLD Parser Builder System

### Syntax
```
Start

int x=123;
real i = 123.456;
string s = 'abcdefg';

from int i = 0 to i < 7 :
if i >= 7 :
y--;
else
x++;
::
::

function void DoSomething(int x, int y) :
int z = x + y;
::

DoSomething(12, 14);

Class MyClass :

protected int x = 0;
private int x = 0;

public function void MyFunc(int x, int y) :
y = x + y;
::
::

End
```