User:Malcolm/sandbox1: Difference between revisions

From WeBWorK_wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 46: Line 46:
</syntaxhighlight>
</syntaxhighlight>


Using <nowiki> <syntaxhighlight lang="perl" enclose="div" highlight="9"> </nowiki>
Using <nowiki> <syntaxhighlight lang="perl" enclose="div" highlight="7,9-11"> </nowiki>


<syntaxhighlight lang="perl" enclose="div" highlight="9">
<syntaxhighlight lang="perl" enclose="div" highlight="7,9-11">
  loadMacros(
  loadMacros(
  "PG.pl",
  "PG.pl",

Revision as of 22:42, 3 June 2011

Some PG code raw

loadMacros(

"PG.pl",
"PGbasicmacros.pl",
"PGchoicemacros.pl",
"PGanswermacros.pl",
"PGauxiliaryFunctions.pl"
);

TEXT(beginproblem());

$showPartialCorrectAnswers = 1;

as <code>

loadMacros(

"PG.pl",
"PGbasicmacros.pl",
"PGchoicemacros.pl",
"PGanswermacros.pl",
"PGauxiliaryFunctions.pl"
);

TEXT(beginproblem());

$showPartialCorrectAnswers = 1;

Using <syntaxhighlight>

<syntaxhighlight> loadMacros(

"PG.pl",
"PGbasicmacros.pl",
"PGchoicemacros.pl",
"PGanswermacros.pl",
"PGauxiliaryFunctions.pl"
);

TEXT(beginproblem());

$showPartialCorrectAnswers = 1;

</syntaxhighlight>

Using <syntaxhighlight lang="perl" enclose="div" highlight="7,9-11">

<syntaxhighlight lang="perl" enclose="div" highlight="7,9-11">

loadMacros(
"PG.pl",
"PGbasicmacros.pl",
"PGchoicemacros.pl",
"PGanswermacros.pl",
"PGauxiliaryFunctions.pl"

);

TEXT(beginproblem());

$showPartialCorrectAnswers = 1;

</syntaxhighlight>