From 41f3cf653cbfa73b5711138bd9b0d983d9b7e3fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Remko=20Tron=C3=A7on?= Date: Sun, 21 Jan 2024 17:44:30 +0100 Subject: [PATCH] thurtle: Add unicode aliases --- src/web/thurtle/thurtle.fs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/web/thurtle/thurtle.fs b/src/web/thurtle/thurtle.fs index 1744a08..1f53b96 100644 --- a/src/web/thurtle/thurtle.fs +++ b/src/web/thurtle/thurtle.fs @@ -10,3 +10,9 @@ : SETPENCOLOR ( n -- ) S" setpencolor" SCALL ; : SETXY ( n1 n2 -- ) S" setxy" SCALL ; : SETHEADING ( n -- ) S" setheading" SCALL ; + +\ Aliases +: ⬆️ FORWARD ; +: ⬇️ BACKWARD ; +: ⬅️ LEFT ; +: ➡️ RIGHT ;