blog/static/files/algorithms/recursion/karel-1/skeleton.py
Matej Focko e1dea0cdbc
feat: don't reference FI MU subjects by their codes
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-11-24 16:30:23 +01:00

28 lines
477 B
Python

from karel_tk import Karel
import sys
class SuperKarel(Karel):
# you can define your own helper functions on Karel here, if you wish to
def run(self):
# TODO
pass
def main():
if len(sys.argv) != 2:
print("Please provide a path to the world as an argument.")
return
k = SuperKarel(sys.argv[1], scale=3, font="Iosevka\\ Term")
k.set_step_delay(500)
k.run()
k.turn_off()
if __name__ == "__main__":
main()