Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 941 Bytes

README.md

File metadata and controls

48 lines (34 loc) · 941 Bytes

🌎 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}")