https://github.com/jrincayc/ucblogo-code
Raw File
Tip revision: a70843e600bb25b2a0092a00e822400235579b28 authored by Joshua J. Cogliati on 24 April 2020, 20:30:58 UTC
Fixing incrementing.
Tip revision: a70843e
dequeue
;;; -*- logo -*-

to dequeue :the.queue.name
local "result
make "result first thing :the.queue.name
make :the.queue.name butfirst thing :the.queue.name
output :result
end

bury "dequeue
back to top