编程科学/SwayPresentations/对象/Examples2
外貌
例子
各个方面怎么样?
这是一个堆栈
function stack()
{
var store = :null;
function push(item)
{
store = cons(item,store);
item;
}
function pop()
{
var item = car(store);
store = cdr(store);
item;
}
function empty?()
{
store == :null;
}
this;
}