https://github.com/jrincayc/ucblogo-code
Revision 5afb248a0a147ea979fec61685ab805ae89466f7 authored by Barak A. Pearlmutter on 19 October 2019, 14:51:53 UTC, committed by Barak A. Pearlmutter on 22 July 2020, 19:36:14 UTC
1 parent 90ab668
Raw File
Tip revision: 5afb248a0a147ea979fec61685ab805ae89466f7 authored by Barak A. Pearlmutter on 19 October 2019, 14:51:53 UTC
make logolib/ more atomic; single copy of contents; UTF-8
Tip revision: 5afb248
do.while
;;; -*- logo -*-

.macro do.while :while.instr :while.cond
op se :while.instr (list "while :while.cond :while.instr)
end

bury "do.while
back to top