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.
- Polish syntax
- Variables
- Builtin functions (wypisz)
- Java 17
- Knowledge of the Polish language :)
stala
=const
zmien
=var
wypisz
=print
- promien means radius
- pole means area
zmien promien = 5;
zmien pole = promien * promien * pi;
wypisz("Pole wynosi " + pole);
promien = 5
pole = promien * promien * pi;
print(f"Pole wynosi {pole}")