EduScript tło

EduScript

Autorstwa @moderr
Utworzono 6/3/2024
The EduScript Polish programming language.

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

Python

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