~ubuntu-branches/debian/lenny/ucblogo/lenny

« back to all changes in this revision

Viewing changes to logolib/while

  • Committer: Bazaar Package Importer
  • Author(s): Hamish Moffatt
  • Date: 2001-09-02 15:15:21 UTC
  • Revision ID: james.westby@ubuntu.com-20010902151521-doo25fmfq7v3pxkg
Tags: upstream-5.1
ImportĀ upstreamĀ versionĀ 5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;;; -*- logo -*-
 
2
 
 
3
.macro while :while.cond :while.instr
 
4
if not run :while.cond [op []]
 
5
op se :while.instr (list "while :while.cond :while.instr)
 
6
end
 
7
 
 
8
bury "while