summaryrefslogtreecommitdiff
path: root/docs/sample_questions.xml
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sample_questions.xml')
-rw-r--r--docs/sample_questions.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/sample_questions.xml b/docs/sample_questions.xml
index 104ea32..cad205b 100644
--- a/docs/sample_questions.xml
+++ b/docs/sample_questions.xml
@@ -10,6 +10,7 @@ and returns the factorial of the number.
For example fact(3) -> 6
</description>
<points>2</points>
+<language>python</language>
<test>
assert fact(0) == 1
assert fact(5) == 120
@@ -26,6 +27,7 @@ returns the square of the argument
For example sqr(3) -> 9.
</description>
<points>1</points>
+<language>python</language>
<test>
import math
assert sqr(3) == 9