| Quizzer documentation | Contained in the Quizzer distribution. |
Quizzer::Element::Text::Note - A note to the user
This is a note to the user, presented using a plain text interface.
| Quizzer documentation | Contained in the Quizzer distribution. |
#!/usr/bin/perl -w
package Quizzer::Element::Text::Note; use strict; use Quizzer::Element; use vars qw(@ISA); @ISA=qw(Quizzer::Element); my $VERSION='0.01'; sub show { my $this=shift; $this->frontend->display($this->question->description."\n". $this->question->extended_description."\n"); return ''; } 1