Help for this page

Select Code to Download


  1. or download this
    use constant powerOn => 0;
    use constant lightOn => 1;
    ...
    }
    
    }
    
  2. or download this
    { my $status;
    my %types = ( powerOn => 0, lightOn => 1 );
    ...
    }
    # call as...
    setStatus('powerOn');