Groups | Search | Server Info | Login | Register


Groups > comp.lang.logo > #77

Re: speed adjustment

Newsgroups comp.lang.logo
Date 2018-10-08 01:49 -0700
References <3492e416-1ed6-4109-be1f-e0f383659d3b@googlegroups.com>
Message-ID <af4b816f-a938-48cb-af7a-331ab984b063@googlegroups.com> (permalink)
Subject Re: speed adjustment
From kenjohnson195105@gmail.com

Show all headers | View raw


You could also replace, say, FORWARD 100 by REPEAT 100 [FORWARD 1]

In Nimbus Logo you could redefine the primitive FORWARD like this

TO FORWARD :DISTANCE
  REPEAT :DISTANCE [$FORWARD 1]

$FORWARD is the system primitive FORWARD. The new definition of
FORWARD becomes the default action.

Back to comp.lang.logo | Previous | NextPrevious in thread | Find similar


Thread

speed adjustment Thaddeus Slamp <tad.slamp@gmail.com> - 2018-04-18 08:09 -0700
  Re: speed adjustment kenjohnson195105@gmail.com - 2018-10-04 19:29 -0700
    Re: speed adjustment Bill Gunshannon <bill.gunshannon@gmail.com> - 2018-10-07 20:17 -0400
  Re: speed adjustment kenjohnson195105@gmail.com - 2018-10-08 01:49 -0700

csiph-web