https://github.com/jrincayc/ucblogo-code
Raw File
Tip revision: 83745353d7eee8adb51f3b171c6732b1960a8fb7 authored by Joshua Cogliati on 28 December 2020, 18:53:34 UTC
If WX_CONFIG_CHECK missing, disable WX. (#84)
Tip revision: 8374535
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