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
- Host: GitHub
- URL: https://github.com/mohabmes/pl-design
- Owner: mohabmes
- Created: 2017-09-27T17:46:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-14T20:24:01.000Z (about 5 years ago)
- Last Synced: 2025-01-08T20:13:17.298Z (4 months ago)
- Topics: csharp, gold-parser, programming-language-design
- Language: C#
- Homepage:
- Size: 98.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PL-Design
Programming Language Design using GOLD Parser Builder System### Syntax
```
Startint 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
```