mirror of
https://github.com/AdaCore/spark2014.git
synced 2026-02-12 12:39:11 -08:00
11 lines
152 B
Ada
11 lines
152 B
Ada
package Switch
|
|
--# own in State;
|
|
is
|
|
|
|
type Reading is (on, off, unknown);
|
|
|
|
function ReadValue return Reading;
|
|
--# global in State;
|
|
|
|
end Switch;
|