Security
mod3.asc
Associated article: Safe Programming With Modula-3
Tags: Security C/C++
_SAFE PROGRAMMING WITH MODULA-3_
by Sam Harbison
[LISTING ONE]
INTERFACE FieldList;
(* Breaks text lines into a list of fields which can be treated
as text or numbers. This interface is thread-safe. *)
IMPORT Rd, Wr, Thread;
EXCEPTION Error;
CONST
DefaultWS = SET ...


