# Trace a Logo program into a SVG image # # See Part 4. module trace import visitor import turtle import canvas redef class Logo # Generate the SVG of the program. fun to_svg: String do # TODO end end # TODO logo_star.to_svg.write_to_file("star.svg") logo_home.to_svg.write_to_file("home.svg")