From 3acc70c6e894a05553ef04474484960035368d2b Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Mon, 27 Apr 2020 16:14:07 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4965166..eaef7bc 100644 --- a/README.md +++ b/README.md @@ -75,11 +75,11 @@ The following TurtleScript code will draw a hollow square on screen. ``` # start of file P 255 0 0 # select red pen -D # pen down -W 5 # go west (left) 5 positions -N 5 # go north (up) 5 positions -E 5 # go east (right) 5 positions -S 5 # go south (down) 5 positions -U # pen up +D # pen down +W 5 # go west (left) 5 positions +N 5 # go north (up) 5 positions +E 5 # go east (right) 5 positions +S 5 # go south (down) 5 positions +U # pen up # end of file ```