Tools
omhun.lst
Associated article: The Sather Programming Language
Tags: C/C++ Tools
_THE SATHER PROGRAMMING LANGUAGE_
by Stephen M. Omohundro
[LISTING ONE]
class STACK{T} is
-- Stacks of elements of type T.
attr s:ARR{T}; -- An array containing the elements.
attr size:INT; -- The current insertion location.
is_...


