Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added examples and release download
  • Loading branch information
itsgerassimos committed Apr 18, 2024
1 parent 2356c0f commit 50817a2
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,31 @@ GLANG is a new hyper-functional programming language
- **Expandable**: GLANG GLP is infinitely expandable and supports JS integration.

## Getting Started
The Getting-Started guide and documentation are available here: https://itsgerassimos.github.io/GLP/
Detailed Getting-Started guide and documentation are available here: https://itsgerassimos.github.io/GLP/

For a quick heads-up Download the [GLANG I/O latest release](https://github.com/itsgerassimos/GLP/releases) and open the GLANG command line. Then start typing functional commands like:
```
(print Hello World);
```

```
(ifelse (more 5 3) (print 5) (print 3));
```

```
(create a (1)); (while (less (a) 10) (actions (set a (add (a) 1)) (print (a) ) )));
```

```
(for (i) (0) (less (i) 10) (actions (set i (add (i) 1)) (print (i)) ))
```

```
(makeFunction reversePrint (actions (print (c)) (print (b)) (print (a))) () a b c);
(reversePrint Hello GPL World);
```

![318423470-ac6966f4-57eb-4b86-9ed6-b72671350a35](https://github.com/itsgerassimos/itsgerassimos/assets/136891956/19f0cc51-0164-4385-8c40-0645f07d478d)



0 comments on commit 50817a2

Please sign in to comment.