The Kbra project is a educational programming environment based on KDE KTurtle.
It implements an simple IDE and interpreter written in python 3. Since it is written in python, it can easily be installed on any platform.
After download of the project. Run the installation of dependencies:
python3 -m pip install -r requeriments.txt
To run the application execute:
python3 Main.py
Test your first script:
reset()
$i = 0
while $i < 4 {
fw(100)
tr(90)
$i = $i + 1
}
And then click run to see the result.