summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/forward/en.py
diff options
context:
space:
mode:
Diffstat (limited to 'robot/problems/introduction/forward/en.py')
-rw-r--r--robot/problems/introduction/forward/en.py21
1 files changed, 6 insertions, 15 deletions
diff --git a/robot/problems/introduction/forward/en.py b/robot/problems/introduction/forward/en.py
index d943867..f8e1730 100644
--- a/robot/problems/introduction/forward/en.py
+++ b/robot/problems/introduction/forward/en.py
@@ -1,24 +1,15 @@
# coding=utf-8
+import server
+mod = server.problems.load_language('python', 'en')
id = 202
-name = 'Forward'
-slug = 'Forward'
+name = 'Forward 3s'
+slug = 'Forward 3s'
description = '''\
-<p>Robot should drive forward in a straight line and stop after three
-seconds.</p>
+<p>Write a program that would make the robot drive straight forward for 3 seconds and stop</p>
'''
-plan = []
-
hint = {
- 'ev3dev': '''\
-<p>To work with the robot you should import the ev3dev module:
-<code>from ev3dev import *</code>.</p>
-''',
-
- 'mindWidgets': '''\
-<p>To work with the robot you should import the mindstorms_widgets module:
-<code>from mindstorms_widgets import mindstorms_widgets</code>.</p>
-''',
+
}