Design
proxy.asc
Associated article: Examining PC Audio
Tags: Design
_PROXY: A SCHEME-BASED PROTOTYPING LANGUAGE_
by Burt Leavenworth
[LISTING ONE]
class queue(;rep) {
queue() {rep=[];}
enqueue(x) {rep=rep conc [x];}
dequeue(;x) {x=hd rep;
rep=tl rep;
return x;}
empty() {return rep==[];}};
LISTING TWO.
class pqueue(;rep) {
pqueue() {...


