Moderrek / EduScript

The EduScript Polish programming language.

Home Page:http://play.eduscript.pl/

Repository from Github https://github.comModerrek/EduScriptRepository from Github https://github.comModerrek/EduScript

🌎 EduScript

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
zmien promien = 5;
zmien pole = promien * promien * pi;
wypisz("Pole wynosi " + pole);

Python

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

About

The EduScript Polish programming language.

http://play.eduscript.pl/

License:Apache License 2.0


Languages

Language:Java 100.0%