blog/static/files/ib002/karel_1/skeleton.py
Matej Focko e71fcfdf4f
feat(ib002,ib111): add backtracking exercise
Signed-off-by: Matej Focko <mfocko@redhat.com>
2022-11-29 15:21:48 +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()