mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 22:44:11 +02:00
26 lines
409 B
Plaintext
26 lines
409 B
Plaintext
module Checklist
|
|
exports all
|
|
definitions
|
|
|
|
values
|
|
|
|
types
|
|
|
|
String = seq of char;
|
|
|
|
-- Item of a checklist, e.g. Landing gear down
|
|
Item ::
|
|
todo : String
|
|
checked : bool;
|
|
|
|
-- A section of a checklist, e.g. Landing Checklist
|
|
Section = seq of Item;
|
|
|
|
-- Full checklist, e.g. Startup, Descent, Landing Checklist
|
|
Checklist = seq of Section;
|
|
|
|
functions
|
|
|
|
end Checklist
|
|
|