https://github.com/jrincayc/ucblogo-code
Raw File
Tip revision: d58dd7c0cf2de738f7da115e88e9d7d882020f52 authored by Barak A. Pearlmutter on 15 September 2022, 09:05:04 UTC
bump policy
Tip revision: d58dd7c
pop
;;; -*- logo -*-

to pop :the.stack.name
local "result
make "result first thing :the.stack.name
make :the.stack.name butfirst thing :the.stack.name
output :result
end

bury "pop
back to top