Help for this page

Select Code to Download


  1. or download this
    StartQuiz( $quizfile, $userfile );
    ...
    ...
              SaveAnswer( $userfile, $question, $answer );
        }
    }
    
  2. or download this
    my $answer = single_choice(
            text    => "If a=1, b=2. What is a+b?",
    ...
                    [ E => "Fish" ],
            ],
    );
    
  3. or download this
    if ($ask->question(text => "Are you happy?")
    and $ask->question(text => "Do you know it?")
    and $ask->question(text => "Really want to show it?")) {
            $ask->info(text => "Then clap your hands!");
    }