Skip to content

Instantly share code, notes, and snippets.

@ceving
Last active December 7, 2023 09:13
Show Gist options
  • Save ceving/44847e08b6dd2b1dc0b9b8da329538b1 to your computer and use it in GitHub Desktop.
Save ceving/44847e08b6dd2b1dc0b9b8da329538b1 to your computer and use it in GitHub Desktop.
Racket-Turtle

Racket-Turtle

  1. Racket installieren: https://download.racket-lang.org/
  2. Techpacks installieren
    cd "C:\Program Files\Racket"
    raco pkg install techpacks
    
  3. Beispiel
    #lang racket
    (require teachpacks/racket-turtle)
    (draw-step-by-step
     (append
      (list
       (forward 100)
       (turn-left 90)
       (forward 100)
       (turn-left 90)
       )))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment