Skip to content

Moderrek/EduScript

Repository files navigation

🌎 EduScript

Playground Learn Download

EduScript is not production language!
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

  • zmien = var
  • wypisz = print
zmien promien = 5;
zmien pole = promien * promien * pi;
wypisz("Pole wynosi " + pole);

Python

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