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

https://github.com/moderrek/eduscript

The EduScript Polish programming language.
https://github.com/moderrek/eduscript

easy interpreted-programming-language interpreter java language polish polski programming-language programowania scripting-language

Last synced: 10 months ago
JSON representation

The EduScript Polish programming language.

Awesome Lists containing this project

README

          


🌎 EduScript

[//]:[Playground](http://play.eduscript.pl)
[//]:[Learn](http://nauka.eduscript.pl)
[//]:[Download](http://play.eduscript.pl)

> [!WARNING]
> The project is designed for my personal needs only, and may not be suitable for everybody. The language should not be used in real world projects. It's completely Open Source, fork it and adapt it to your needs.

The language is intended to help you learn programming in Polish.

## Features

* Polish syntax
* Variables
* Builtin functions (wypisz)

## Required

* Java 17
* Knowledge of the Polish language :)

# Examples

### EduScript

* `stala` = `const`
* `zmien` = `var`
* `wypisz` = `print`
* *promien* means *radius*
* *pole* means *area*

```es
zmien promien = 5;
zmien pole = promien * promien * pi;
wypisz("Pole wynosi " + pole);
```

### Python

```py
promien = 5
pole = promien * promien * pi;
print(f"Pole wynosi {pole}")
```