Database
lewis.lst
Associated article: A Programmer's Database for the Macintosh
Tags: Database
_A PROGRAMMER'S DATABASE FOR THE MACINTOSH_
by Abdullah Al-Dhelaan and Ted G. Lewis
Example 1: A simple event loop
PROCEDURE SimpleEventLoop ( Var Event: EventRecord );
Var UserAction : Boolean; {Has the user done something??}
Finished : Boolean; {Exit When user Quits}
Begin
Repeat
SystemTask; {...


